mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 14:25:20 +02:00
eca9011c29
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@947 3c298f89-4303-0410-b956-a3cf2f4a3e73
22 lines
192 B
Bash
22 lines
192 B
Bash
#!/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
|