let ipkg fail when a package file to be installed is not found
[openwrt/openwrt.git] / openwrt / package / aiccu / files / aiccu.init
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