0cd8cbd7ff
SVN-Revision: 562
21 lines
192 B
Bash
Executable file
21 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
|