mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 16:22:49 +02:00
22 lines
192 B
Plaintext
22 lines
192 B
Plaintext
|
#!/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
|