dabafcf3f0b676e0b1fc33c163afbc5037b6ac94
[openwrt.git] / openwrt / package / aiccu / files / aiccu
1 #!/bin/sh
2
3 case "$1" in
4     start)
5         aiccu start     
6         ;;
7
8     stop)
9         aiccu stop
10         aiccu stop
11         ;;
12
13     restart)
14         $0 stop
15         $0 start
16         ;;
17     *)
18         echo "Usage: $0 {start|stop|restart}"
19         exit 1
20         ;;
21 esac