summaryrefslogtreecommitdiffstats
path: root/package/busybox/files/cron
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-11-22 23:06:40 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-11-22 23:06:40 +0000
commitbd8e5fb7db8431d22fad5eb72a2a38c0f1b50f45 (patch)
tree4f7eeed6b793a65cf049eb6505718ac37eedd014 /package/busybox/files/cron
parent392966798babed140db8ff7266633d65add2edd6 (diff)
downloadmaster-31e0f0ae-bd8e5fb7db8431d22fad5eb72a2a38c0f1b50f45.tar.gz
master-31e0f0ae-bd8e5fb7db8431d22fad5eb72a2a38c0f1b50f45.tar.bz2
master-31e0f0ae-bd8e5fb7db8431d22fad5eb72a2a38c0f1b50f45.zip
move busybox init scripts from base-files into the busybox package and make them depend on busybox menuconfig options
SVN-Revision: 5620
Diffstat (limited to 'package/busybox/files/cron')
-rwxr-xr-xpackage/busybox/files/cron12
1 files changed, 12 insertions, 0 deletions
diff --git a/package/busybox/files/cron b/package/busybox/files/cron
new file mode 100755
index 0000000000..e78d02332c
--- /dev/null
+++ b/package/busybox/files/cron
@@ -0,0 +1,12 @@
+#!/bin/sh /etc/rc.common
+# Copyright (C) 2006 OpenWrt.org
+
+start () {
+ mkdir -p /var/spool/cron
+ [ -L /var/spool/cron/crontabs ] || ln -s /etc/crontabs /var/spool/cron/crontabs
+ crond -c /etc/crontabs
+}
+
+stop() {
+ killall crond
+}