updated on Tue Jan 10 04:01:21 UTC 2012
[aur-mirror.git] / urfkill / rc.urfkilld
blob0e14440f73d3b1508a38f92489974d7e2459e933
1 #!/bin/bash
3 . /etc/rc.conf
4 . /etc/rc.d/functions
6 PID=`pidof -o %PPID /usr/lib/urfkill/urfkilld`
7 case "$1" in
8 start)
9 stat_busy "Starting rfkill switch daemon"
10 [ -z "$PID" ] && /usr/lib/urfkill/urfkilld -f &> /dev/null
11 if [ $? -lt 0 ] ; then
12 stat_fail
13 else
14 add_daemon urfkilld # create the 'state' dir
15 stat_done
18 stop)
19 stat_busy "Stopping rfkill switch daemon"
20 [ "$PID" ] && kill $PID &> /dev/null
21 if [ $? -gt 0 ]; then
22 stat_fail
23 else
24 rm_daemon urfkilld # remove the 'state' dir
25 stat_done
28 restart)
29 $0 stop
30 sleep 5
31 $0 start
34 echo "usage: $0 {start|stop|restart}"
35 esac
36 exit 0