contrib/wicd/wicd.rc

24 lines
246 B
Plaintext
Raw Normal View History

2011-07-10 05:47:15 +02:00
#!/bin/sh
#
# /etc/rc.d/wicd: start/stop wicd daemon
#
case $1 in
start)
/usr/sbin/wicd
;;
stop)
kill $(cat /var/run/wicd/wicd.pid)
2011-07-10 05:47:15 +02:00
;;
restart)
$0 stop
$0 start
;;
*)
echo "usage: $0 [start|stop|restart]"
exit 1
;;
esac
# End of file