wok view c_icap/stuff/c-icapd @ rev 12945

ecore: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 30 20:30:57 2012 +0200 (2012-05-30)
parents
children 0d8a1a3edc72
line source
1 #!/bin/sh
2 # /etc/init.d/nagios : Start, stop and restart ICAP server on SliTaz, at
3 # boot time or with the command line.
4 #
5 # To start ICAP server at boot time, just put c-icapd 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=c-icap
12 DESC="ICAP Server"
13 DAEMON=/usr/bin/c-icap
14 OPTIONS=""
15 PIDFILE=/var/run/c-icap/c-icap.pid
17 case "$1" in
18 start)
19 if active_pidfile $PIDFILE $NAME ; 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 ! active_pidfile $PIDFILE $NAME ; then
29 echo "$NAME is not running."
30 exit 1
31 fi
32 echo -n "Stopping $DESC: $NAME... "
33 kill `cat $PIDFILE`
34 status
35 ;;
36 restart|reload)
37 if ! active_pidfile $PIDFILE $NAME ; then
38 echo "$NAME is not running."
39 exit 1
40 fi
41 echo -n "Restarting $DESC: $NAME... "
42 kill `cat $PIDFILE`
43 sleep 2
44 $DAEMON $OPTIONS
45 status
46 ;;
47 test)
48 configtest ;;
49 *)
50 echo ""
51 echo -e "\033[1mUsage:\033[0m /etc/init.d/`basename $0` [start|stop|restart|reload]"
52 echo ""
53 exit 1
54 ;;
55 esac
57 exit 0