updated on Sun Jan 15 16:02:00 UTC 2012
[aur-mirror.git] / udpxy / udpxy.rc
blobdb191c5d0656d5a9052abacb6d5da3172dc84fea
1 #!/bin/bash
2 . /etc/rc.conf
3 . /etc/rc.d/functions
4 UDPXYOPTS=
5 [ -f /etc/conf.d/udpxy ] && . /etc/conf.d/udpxy
6 PID=`pidof -o %PPID /usr/bin/udpxy`
7 case "$1" in
8 start)
9 stat_busy "Starting udpxy"
10 [ -z "$PID" ] && /usr/bin/udpxy ${UDPXYOPTS}
11 if [ $? -gt 0 ]; then
12 stat_fail
13 else
14 add_daemon udpxy
15 stat_done
18 stop)
19 stat_busy "Stopping udpxy"
20 [ ! -z "$PID" ] && kill $PID &> /dev/null
21 if [ $? -gt 0 ]; then
22 stat_fail
23 else
24 rm_daemon udpxy
25 stat_done
28 restart)
29 $0 stop
30 $0 start
33 echo "usage: $0 {start|stop|restart}"
34 esac
35 exit 0