wok diff c_icap/stuff/c-icapd @ rev 13001
Up pam_krb5 (4.6)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Jun 06 15:09:15 2012 +0200 (2012-06-06) |
parents | |
children | 0d8a1a3edc72 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/c_icap/stuff/c-icapd Wed Jun 06 15:09:15 2012 +0200 1.3 @@ -0,0 +1,57 @@ 1.4 +#!/bin/sh 1.5 +# /etc/init.d/nagios : Start, stop and restart ICAP server on SliTaz, at 1.6 +# boot time or with the command line. 1.7 +# 1.8 +# To start ICAP server at boot time, just put c-icapd in the $RUN_DAEMONS 1.9 +# variable of /etc/rcS.conf and configure options with /etc/daemons.conf 1.10 +# 1.11 +. /etc/init.d/rc.functions 1.12 +. /etc/daemons.conf 1.13 + 1.14 +NAME=c-icap 1.15 +DESC="ICAP Server" 1.16 +DAEMON=/usr/bin/c-icap 1.17 +OPTIONS="" 1.18 +PIDFILE=/var/run/c-icap/c-icap.pid 1.19 + 1.20 +case "$1" in 1.21 + start) 1.22 + if active_pidfile $PIDFILE $NAME ; then 1.23 + echo "$NAME already running." 1.24 + exit 1 1.25 + fi 1.26 + echo -n "Starting $DESC: $NAME... " 1.27 + $DAEMON $OPTIONS 1.28 + status 1.29 + ;; 1.30 + stop) 1.31 + if ! active_pidfile $PIDFILE $NAME ; then 1.32 + echo "$NAME is not running." 1.33 + exit 1 1.34 + fi 1.35 + echo -n "Stopping $DESC: $NAME... " 1.36 + kill `cat $PIDFILE` 1.37 + status 1.38 + ;; 1.39 + restart|reload) 1.40 + if ! active_pidfile $PIDFILE $NAME ; then 1.41 + echo "$NAME is not running." 1.42 + exit 1 1.43 + fi 1.44 + echo -n "Restarting $DESC: $NAME... " 1.45 + kill `cat $PIDFILE` 1.46 + sleep 2 1.47 + $DAEMON $OPTIONS 1.48 + status 1.49 + ;; 1.50 + test) 1.51 + configtest ;; 1.52 + *) 1.53 + echo "" 1.54 + echo -e "\033[1mUsage:\033[0m /etc/init.d/`basename $0` [start|stop|restart|reload]" 1.55 + echo "" 1.56 + exit 1 1.57 + ;; 1.58 +esac 1.59 + 1.60 +exit 0