17 lines
259 B
Text
17 lines
259 B
Text
case $1 in
|
|
start)
|
|
/usr/bin/freshclam --quiet --daemon --checks=1 --daemon-notify \
|
|
--log=/var/log/clamav/freshclam.log
|
|
;;
|
|
stop)
|
|
killall -q /usr/bin/freshclam
|
|
;;
|
|
restart)
|
|
$0 stop
|
|
sleep 2
|
|
$0 start
|
|
;;
|
|
*)
|
|
echo "Usage: $0 [start|stop|restart]"
|
|
;;
|
|
esac
|