1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-13 01:21:10 +03:00
openwrt-xburst/package/aiccu/files/S51aiccu
nbd a20aa23720 add aiccu, bwm, ntpclient and radvd (from Sebastian Noel)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@562 3c298f89-4303-0410-b956-a3cf2f4a3e73
2005-04-04 22:12:17 +00:00

22 lines
192 B
Bash
Executable File

#!/bin/sh
case "$1" in
start)
aiccu start
;;
stop)
aiccu stop
aiccu stop
;;
restart)
$0 stop
$0 start
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
;;
esac