Compare commits

...

No commits in common. "v963" and "v961" have entirely different histories.
v963 ... v961

4 changed files with 15 additions and 47 deletions

View File

@ -1,11 +0,0 @@
description "clamav mail virus scanner for sendmail startup"
author "Harald Kueller <harald.kueller@compuextreme.de>"
version 1.0
emits none special
start on (runlevel [2345] and (started clamd))
stop on stopping clamd
console output
exec /usr/sbin/clamav-milter

View File

@ -1,11 +0,0 @@
description "clamav virus scanner deamon startup"
author "Harald Kueller <harald.kueller@compuextreme.de>"
version 1.0
emits none special
start on (runlevel [2345] and (started ifup))
stop on runlevel [016]
console output
exec /usr/sbin/clamd

View File

@ -1,7 +1,6 @@
#!/bin/bash #!/bin/bash
# #
if [ -d /var/install/sysvinit* ]; then
WDIR=`pwd` WDIR=`pwd`
cd etc/init.d cd etc/init.d
chmod 755 clamav chmod 755 clamav
@ -17,4 +16,3 @@ if [ -d /var/install/sysvinit* ]; then
cd .. cd ..
done done
cd $WDIR cd $WDIR
fi

View File

@ -1,8 +0,0 @@
#!/bin/bash
if getent passwd clamav >/dev/null; then
userdel clamav
fi
if getent group clamav >/dev/null; then
groupdel clamav
fi