1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-27 17:15:00 +02:00

[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
This commit is contained in:
florian 2010-03-21 17:16:41 +00:00
parent 013976e1d1
commit c55e10aab7

View File

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