From c55e10aab7cee13246923cc674f70710bb381018 Mon Sep 17 00:00:00 2001
From: florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Date: Sun, 21 Mar 2010 17:16:41 +0000
Subject: [PATCH] [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
---
 package/busybox/files/cron | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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}
 }
 
-- 
2.20.1