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/maradns/files/init | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100755 recipes/maradns/files/init (limited to 'recipes/maradns/files/init') diff --git a/recipes/maradns/files/init b/recipes/maradns/files/init new file mode 100755 index 0000000000..0e4d1b8418 --- /dev/null +++ b/recipes/maradns/files/init @@ -0,0 +1,35 @@ +PATH=/sbin:/bin:/usr/sbin:/usr/bin +DAEMON=/usr/sbin/maradns +NAME="maradns" +DESC="DNS server" +CONF="/etc/maradns/mararc" + +test -f $DAEMON || exit 0 + +set -e + +case "$1" in + start) + echo -n "Starting $DESC: " + start-stop-daemon -S -x $DAEMON -- -f $CONF 2>&1 | logger -p daemon.notice -t $NAME & + echo "$NAME." + ;; + stop) + echo -n "Stopping $DESC: " + start-stop-daemon -K -x $DAEMON + echo "$NAME." + ;; + restart) + echo -n "Restarting $DESC: " + $0 stop + sleep 3 + $0 start + ;; + *) + N=/etc/init.d/$NAME + echo "Usage: $N {start|stop|restart}" >&2 + exit 1 + ;; +esac + +exit 0 -- cgit v1.2.3