summaryrefslogtreecommitdiffstats
path: root/package/busybox
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-03-21 17:16:41 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-03-21 17:16:41 +0000
commitc55e10aab7cee13246923cc674f70710bb381018 (patch)
treebaede46c79477c8c9c4cc5e1124e5156a01d292d /package/busybox
parent013976e1d1771291fd549b39163f22cc724257e4 (diff)
[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')
-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 aa538969b..2e020bbc6 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}
}