1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-15 11:43:54 +02:00
openwrt/openwrt/package/aiccu/files/aiccu.init

22 lines
192 B
Plaintext
Raw Normal View History

#!/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