summaryrefslogtreecommitdiffstats
path: root/package/base-files/default/etc/init.d/cron
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-11-22 23:06:40 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-11-22 23:06:40 +0000
commit6f447d09dfa4c4ee2321f327c5b62e79db3f9173 (patch)
tree0920f5ee656c52738cc894455027d1e3487173ec /package/base-files/default/etc/init.d/cron
parent35edb7e5ee58628cccc9c2ad0c075c26e0cb8c83 (diff)
move busybox init scripts from base-files into the busybox package and make them depend on busybox menuconfig options
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5620 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/default/etc/init.d/cron')
-rwxr-xr-xpackage/base-files/default/etc/init.d/cron12
1 files changed, 0 insertions, 12 deletions
diff --git a/package/base-files/default/etc/init.d/cron b/package/base-files/default/etc/init.d/cron
deleted file mode 100755
index e78d02332..000000000
--- a/package/base-files/default/etc/init.d/cron
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/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
-}