diff options
Diffstat (limited to 'testing/clamav/install')
-rw-r--r-- | testing/clamav/install | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/testing/clamav/install b/testing/clamav/install deleted file mode 100644 index a2092e815..000000000 --- a/testing/clamav/install +++ /dev/null @@ -1,14 +0,0 @@ -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 - - chown -R clamav:clamav /var/lib/clamav - install -o clamav -g clamav -d /run/clamav - install -o clamav -g clamav -d /var/log/clamav -} - -post_remove() { - getent passwd clamav &>/dev/null && userdel clamav >/dev/null - getent group clamav &>/dev/null && groupdel clamav >/dev/null - return 0 -} |