Files
bpfire/src/initscripts/init.d/clamav
2007-11-04 16:25:19 +00:00

50 lines
851 B
Bash

#!/bin/sh
# Begin $rc_base/init.d/clamav
. /etc/sysconfig/rc
. $rc_functions
case "$1" in
start)
boot_mesg "Starting Clamav Definition Updater..."
loadproc /usr/bin/freshclam -d -c 10
boot_mesg "Starting Clamav Daemon..."
COUNTER=0
while [ "$COUNTER" -lt "10" ]; do
[ -e "/usr/share/clamav/main.cvd" ] && \
[ -e "/usr/share/clamav/daily.cvd" ] && \
break
sleep 5
COUNTER=$(($COUNTER + 1))
done
loadproc /usr/sbin/clamd
;;
stop)
boot_mesg "Stopping Clamav Definition Updater..."
killproc /usr/bin/freshclam
boot_mesg "Stopping Clamav Daemon..."
killproc /usr/sbin/clamd
;;
restart)
$0 stop
sleep 1
$0 start
;;
status)
statusproc /usr/sbin/clamd
statusproc /usr/bin/freshclam
;;
*)
echo "Usage: $0 {start|stop|restart|status}"
exit 1
;;
esac
# End $rc_base/init.d/clamav