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/cron/cron-3.0pl1/init | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 recipes/cron/cron-3.0pl1/init (limited to 'recipes/cron/cron-3.0pl1/init') diff --git a/recipes/cron/cron-3.0pl1/init b/recipes/cron/cron-3.0pl1/init new file mode 100644 index 0000000000..0a4f3e256f --- /dev/null +++ b/recipes/cron/cron-3.0pl1/init @@ -0,0 +1,38 @@ +#! /bin/sh +# +# This is an init script for openembedded +# Copy it to /etc/init.d/cron and type +# > update-rc.d cron defaults 60 +# +cron=/usr/sbin/cron +test -x "$cron" || exit 0 + +case "$1" in + start) + echo -n "Starting Vixie-cron" + start-stop-daemon --start --quiet --exec $cron + echo "." + ;; + stop) + echo -n "Stopping Vixie-cron" + start-stop-daemon --stop --quiet --pidfile /var/run/cron.pid + echo "." + ;; + reload|force-reload) + start-stop-daemon --stop --quiet --signal 1 --exec $cron + ;; + restart) + echo -n "Stopping Vixie-cron" + start-stop-daemon --stop --quiet --pidfile /var/run/cron.pid + echo "." + sleep 1 + echo -n "Starting Vixie-cron" + start-stop-daemon --start --quiet --exec $cron + echo "." + ;; + *) + echo "Usage: /etc/init.d/cron {start|stop|reload|restart|force-reload}" + exit 1 +esac + +exit 0 \ No newline at end of file -- cgit 1.2.3-korg