updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / zaptel-svn / ztcfg
blobd8dbe8a0d779e83cad9f9fb0682ddd24f6e6e526
1 #!/bin/bash
3 . /etc/rc.conf
4 . /etc/rc.d/functions
6 PID=`cat /var/run/ztcfg.pid 2>/dev/null`
7 case "$1" in
8 start)
9 stat_busy "Starting ztcfg"
10 [ -z "$PID" ] && /sbin/ztcfg
11 if [ $? -gt 0 ]; then
12 stat_fail
13 else
14 add_daemon ztcfg
15 stat_done
18 stop)
19 stat_busy "Stopping ztcfg"
20 [ ! -z "$PID" ] && kill $PID &> /dev/null
21 if [ $? -gt 0 ]; then
22 stat_fail
23 else
24 rm_daemon ztcfg
25 stat_done
28 restart)
29 $0 stop
30 sleep 1
31 $0 start
34 echo "usage: $0 {start|stop|restart}"
35 esac
36 exit 0