wok view clamav/stuff/daemon-clamd @ rev 1354

iUp: vim to 7.2.
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sat Sep 06 15:08:50 2008 +0200 (2008-09-06)
parents
children fcb3e7fb7bfa
line source
1 #!/bin/sh
2 # /etc/init.d/daemon-name: Start, stop and restart daemon
3 # on SliTaz, at boot time or with the command line.
4 #
5 # To start daemon at boot time, just put the right name in the $RUN_DAEMONS
6 # variable of /etc/rcS.conf and configure options with /etc/daemons.conf.
7 #
8 . /etc/init.d/rc.functions
9 . /etc/daemons.conf
11 NAME=Clamd
12 DESC="clamav daemon"
13 DAEMON=/usr/sbin/clamd
14 OPTIONS=$CLAMD_OPTIONS
15 PIDFILE=/var/run/clamd.pid
17 case "$1" in
18 start)
19 if [ -f $PIDFILE ] ; then
20 echo "$NAME already running."
21 exit 1
22 fi
23 echo -n "Starting $DESC: $NAME... "
24 $DAEMON $OPTIONS
25 status
26 ;;
27 stop)
28 if [ ! -f $PIDFILE ] ; then
29 echo "$NAME is not running."
30 exit 1
31 fi
32 echo -n "Stopping $DESC: $NAME... "
33 kill `cat $PIDFILE`
34 rm $PIDFILE
35 status
36 ;;
37 restart)
38 if [ ! -f $PIDFILE ] ; then
39 echo "$NAME is not running."
40 exit 1
41 fi
42 echo -n "Restarting $DESC: $NAME... "
43 kill `cat $PIDFILE`
44 rm $PIDFILE
45 sleep 2
46 $DAEMON $OPTIONS
47 status
48 ;;
49 *)
50 echo ""
51 echo -e "\033[1mUsage:\033[0m /etc/init.d/`basename $0` [start|stop|restart]"
52 echo ""
53 exit 1
54 ;;
55 esac
57 exit 0