Browse Source

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
Florian Fainelli 16 years ago
parent
commit
d40104d567
1 changed files with 1 additions and 1 deletions
  1. 1 1
      package/busybox/files/cron

+ 1 - 1
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}
 }