projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
rt2800pci: add back ifdown hang workaround that was accidentally dropped during a...
[openwrt.git]
/
package
/
busybox
/
files
/
cron
diff --git
a/package/busybox/files/cron
b/package/busybox/files/cron
index
aa53896
..
d997937
100755
(executable)
--- a/
package/busybox/files/cron
+++ b/
package/busybox/files/cron
@@
-3,10
+3,10
@@
START=50
start () {
START=50
start () {
- loglevel=$(
/sbin/uci get "system.@system[0].cronloglevel" 2>/dev/null
)
+ loglevel=$(
uci_get "system.@system[0].cronloglevel"
)
[ -z "$(ls /etc/crontabs/)" ] && exit 1
mkdir -p /var/spool/cron
[ -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}
}
crond -c /etc/crontabs -l ${loglevel:-5}
}
This page took
0.020988 seconds
and
4
git commands to generate.