add more scanning data to wlcompat
[openwrt.git] / package / aiccu / files / S51aiccu
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
This page took 0.045217 seconds and 5 git commands to generate.