diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-05-19 05:28:28 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-05-19 05:28:28 +0000 |
commit | 881ef53d90479df53c308a2470cdb48d8da267f6 (patch) | |
tree | e3bb966a4f8fdac942239e7b8a734853c18afba5 /openwrt/package/aiccu/files/aiccu.init | |
parent | 06d28725dadee72314e8f2b8c4fac0ed872f418c (diff) |
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@947 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/aiccu/files/aiccu.init')
-rw-r--r-- | openwrt/package/aiccu/files/aiccu.init | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/openwrt/package/aiccu/files/aiccu.init b/openwrt/package/aiccu/files/aiccu.init new file mode 100644 index 0000000000..dabafcf3f0 --- /dev/null +++ b/openwrt/package/aiccu/files/aiccu.init @@ -0,0 +1,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 |