From: Florian Fainelli Date: Sun, 21 Mar 2010 17:16:41 +0000 (+0000) Subject: [package] If /var/spool/cron/crontabs is a directory, then /etc/init.d/cron X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=787e88114047fb8b0f109704d1335c1e737cfe64 [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 SVN-Revision: 20354 --- 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} }