#!/bin/sh # # clamd clamd (antyvirus daemon) # # chkconfig: 345 60 40 # # description: Clam Antivirus daemon # # processname: clamd # pidfile: /var/run/clamav/clamd.pid # # $Id$ # Source function library . /etc/rc.d/init.d/functions # Get service config [ -f /etc/sysconfig/clamd ] && . /etc/sysconfig/clamd start() { # Check if the service is already running? if [ -f /var/lock/subsys/clamd ]; then msg_already_running "Clam Antivirus daemon" return fi msg_starting "Clam Antivirus daemon" daemon --pidfile /var/run/clamav/clamd.pid /usr/sbin/clamd RETVAL=$? [ $RETVAL -eq 0 ] && touch /var/lock/subsys/clamd } stop() { if [ ! -f /var/lock/subsys/clamd ]; then msg_not_running "Clam Antivirus daemon" return fi msg_stopping "Clam Antivirus daemon" killproc --pidfile /var/run/clamav/clamd.pid clamd rm -f /var/lock/subsys/clamd /var/run/clamav/clamd.pid >/dev/null 2>&1 } reload() { if [ -f /var/lock/subsys/clamd ]; then msg_reloading "Clam Antivirus daemon" killproc clamd -HUP RETVAL=$? else msg_not_running "Clam Antivirus daemon" RETVAL=7 fi } condrestart() { if [ -f /var/lock/subsys/clamd ]; then stop start else msg_not_running "Clam Antivirus daemon" RETVAL=$1 fi } RETVAL=0 # See how we were called. case "$1" in start) start ;; stop) stop ;; restart) stop start ;; try-restart) condrestart 0 ;; reload|force-reload) reload ;; status) status clamd exit $? ;; *) msg_usage "$0 {start|stop|restart|try-restart|reload|force-reload|status}" exit 3 esac exit $RETVAL