From 8963a13f9fafc61c29dd0545d71d1c934ca01680 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Mon, 12 Apr 2010 21:59:22 +0200 Subject: [PATCH] busybox: - adding init script for cron daemon --- packages/sysutils/busybox/init.d/11_crond | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 packages/sysutils/busybox/init.d/11_crond diff --git a/packages/sysutils/busybox/init.d/11_crond b/packages/sysutils/busybox/init.d/11_crond new file mode 100755 index 0000000000..e5d03e397c --- /dev/null +++ b/packages/sysutils/busybox/init.d/11_crond @@ -0,0 +1,10 @@ +# +# start cron daemon +# +# runlevels: openelec, textmode + +( + progress "Starting cron daemon" + + crond -bS -c /etc/crontabs +)&