1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-26 08:57:42 +03:00
openwrt-xburst/package/aiccu/files/aiccu.init
nico eca9011c29 Tweaked aiccu package, add cvs Id to Makefile, fix aiccu init-script again (need some sleep, I guess)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@947 3c298f89-4303-0410-b956-a3cf2f4a3e73
2005-05-19 05:28:28 +00:00

22 lines
192 B
Bash

#!/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