12345678910111213141516171819202122232425262728293031323334353637383940 |
- #!/bin/sh
- DAEMON_PATH=/usr/sbin/tcf-agent
- DAEMON_NAME=tcf-agent
- DAEMON_ARGS="-L- -l0"
- PIDFILE=/var/run/$DAEMON_NAME.pid
- [ -r /etc/default/$DAEMON_NAME ] && . /etc/default/$DAEMON_NAME
- start() {
- printf "Starting $DAEMON_NAME: "
- start-stop-daemon -S -o -q -p $PIDFILE -m -b \
- -x $DAEMON_PATH -- $DAEMON_ARGS
- [ $? = 0 ] && echo "OK" || echo "FAIL"
- }
- stop() {
- printf "Stopping $DAEMON_NAME: "
- start-stop-daemon -K -o -q -p $PIDFILE \
- -x $DAEMON_PATH
- [ $? = 0 ] && echo "OK" || echo "FAIL"
- }
- case "$1" in
- start)
- start
- ;;
- stop)
- stop
- ;;
- restart|reload)
- stop
- start
- ;;
- *)
- echo "Usage: $0 {start|stop|restart}"
- exit 1
- esac
|