summaryrefslogtreecommitdiff
path: root/libre/clamav/install
diff options
context:
space:
mode:
Diffstat (limited to 'libre/clamav/install')
-rw-r--r--libre/clamav/install15
1 files changed, 15 insertions, 0 deletions
diff --git a/libre/clamav/install b/libre/clamav/install
new file mode 100644
index 000000000..1a0653e2a
--- /dev/null
+++ b/libre/clamav/install
@@ -0,0 +1,15 @@
+post_upgrade() {
+ systemd-tmpfiles --create clamav.conf
+}
+
+post_install() {
+ getent group clamav &>/dev/null || groupadd -r -g 64 clamav >/dev/null
+ getent passwd clamav &>/dev/null || useradd -r -u 64 -g clamav -d /dev/null -s /bin/false -c "Clam AntiVirus" clamav >/dev/null
+ post_upgrade
+}
+
+post_remove() {
+ getent passwd clamav &>/dev/null && userdel clamav >/dev/null
+ getent group clamav &>/dev/null && groupdel clamav >/dev/null
+ return 0
+}