1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
#!/bin/sh
PATH=/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/share/popfile/start_popfile.sh
NAME=popfile
DESC=popfile
PIDFILE=/var/run/popfile/popfile.pid
test -f $DAEMON || exit 0
set -e
if [ -e /etc/default/popfile ]
then
. /etc/default/popfile
fi
EXTRA_OPTS=
if [ "$NICE_LEVEL" != "" ]
then
EXTRA_OPTS="$EXTRA_OPTS --nicelevel $NICE_LEVEL"
fi
start() {
echo -n "Starting $DESC: "
NOSTART=0
if [ -e $PIDFILE ]; then
if kill -0 `cat $PIDFILE` >/dev/null 2>&1; then
echo "$NAME already running."
NOSTART=1
fi
fi
if [ "$NOSTART" = "0" ]; then
start-stop-daemon --start --exec $DAEMON --pidfile $PIDFILE \
--chuid popfile --background $EXTRA_OPTS -- $DAEMON_OPTS
echo "$NAME."
fi
}
stop() {
echo -n "Stopping $DESC: "
if [ -e $PIDFILE ]; then
start-stop-daemon --stop --pidfile $PIDFILE --retry 60
echo "$NAME."
else
echo "$NAME not running."
fi
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart|force-reload)
stop
sleep 1
start
;;
*)
N=/etc/init.d/$NAME
echo "Usage: $N {start|stop|restart|force-reload}" >&2
exit 1
;;
esac
exit 0
|