summaryrefslogtreecommitdiffstats
path: root/package/aiccu/files/S51aiccu
blob: dabafcf3f0b676e0b1fc33c163afbc5037b6ac94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/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