Openwrt/openwrt/package/aiccu/files/S51aiccu
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