aboutsummaryrefslogtreecommitdiffstats
path: root/package/busybox/files
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2010-03-21 17:16:41 +0000
committerFlorian Fainelli <florian@openwrt.org>2010-03-21 17:16:41 +0000
commit73fa2a680e3d8f5f99165648356119ddbe98fa6a (patch)
treebaede46c79477c8c9c4cc5e1124e5156a01d292d /package/busybox/files
parentc43ad478e4e92a9bc7cffc1f2191df904aeb7da6 (diff)
downloadmaster-187ad058-73fa2a680e3d8f5f99165648356119ddbe98fa6a.tar.gz
master-187ad058-73fa2a680e3d8f5f99165648356119ddbe98fa6a.tar.bz2
master-187ad058-73fa2a680e3d8f5f99165648356119ddbe98fa6a.zip
[package] If /var/spool/cron/crontabs is a directory, then /etc/init.d/cron
will place a spurious "crontabs" symlink into it. Patch fro Stefan Monnier git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20354 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/busybox/files')
-rwxr-xr-xpackage/busybox/files/cron2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/busybox/files/cron b/package/busybox/files/cron
index aa538969be..2e020bbc62 100755
--- a/package/busybox/files/cron
+++ b/package/busybox/files/cron
@@ -6,7 +6,7 @@ start () {
loglevel=$(/sbin/uci get "system.@system[0].cronloglevel" 2>/dev/null)
[ -z "$(ls /etc/crontabs/)" ] && exit 1
mkdir -p /var/spool/cron
- [ -L /var/spool/cron/crontabs ] || ln -s /etc/crontabs /var/spool/cron/crontabs
+ ln -s /etc/crontabs /var/spool/cron/ 2>/dev/null
crond -c /etc/crontabs -l ${loglevel:-5}
}