From 709c4d66e0b107ca606941b988bad717c0b45d9b Mon Sep 17 00:00:00 2001 From: Denys Dmytriyenko Date: Tue, 17 Mar 2009 14:32:59 -0400 Subject: rename packages/ to recipes/ per earlier agreement See links below for more details: http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326 http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816 Signed-off-by: Denys Dmytriyenko Acked-by: Mike Westerhof Acked-by: Philip Balister Acked-by: Khem Raj Acked-by: Marcin Juszkiewicz Acked-by: Koen Kooi Acked-by: Frans Meulenbroeks --- recipes/chillispot/files/init | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 recipes/chillispot/files/init (limited to 'recipes/chillispot/files') diff --git a/recipes/chillispot/files/init b/recipes/chillispot/files/init new file mode 100644 index 0000000000..784e519754 --- /dev/null +++ b/recipes/chillispot/files/init @@ -0,0 +1,35 @@ +PATH=/sbin:/bin:/usr/sbin:/usr/bin +DAEMON=/usr/sbin/chilli +NAME=chilli +DESC=chillispot + +test -f $DAEMON || exit 0 + +set -e + +case "$1" in + start) + echo -n "Starting $DESC: " + start-stop-daemon -S -p /var/run/$NAME.pid -x $DAEMON + echo "$NAME." + ;; + stop) + echo -n "Stopping $DESC: " + start-stop-daemon -K -p /var/run/$NAME.pid -x $DAEMON + echo "$NAME." + ;; + restart|force-reload) + echo -n "Restarting $DESC: " + start-stop-daemon -K -p /var/run/$NAME.pid -x $DAEMON + sleep 1 + start-stop-daemon -S -p /var/run/$NAME.pid -x $DAEMON + echo "$NAME." + ;; + *) + N=/etc/init.d/$NAME + echo "Usage: $N {start|stop|restart|force-reload}" >&2 + exit 1 + ;; +esac + +exit 0 -- cgit v1.2.3