move busybox init scripts from base-files into the busybox package and make them...
[openwrt/staging/jogo.git] / package / base-files / default / etc / init.d / cron
diff --git a/package/base-files/default/etc/init.d/cron b/package/base-files/default/etc/init.d/cron
deleted file mode 100755 (executable)
index e78d023..0000000
+++ /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
-}