From 881ef53d90479df53c308a2470cdb48d8da267f6 Mon Sep 17 00:00:00 2001 From: nico Date: Thu, 19 May 2005 05:28:28 +0000 Subject: 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 --- openwrt/package/aiccu/files/aiccu.init | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 openwrt/package/aiccu/files/aiccu.init (limited to 'openwrt/package/aiccu/files/aiccu.init') diff --git a/openwrt/package/aiccu/files/aiccu.init b/openwrt/package/aiccu/files/aiccu.init new file mode 100644 index 000000000..dabafcf3f --- /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 -- cgit v1.2.3