projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
mac80211: fix compile for 2.6.33 (thx, acoul)
[openwrt.git]
/
package
/
busybox
/
files
/
cron
diff --git
a/package/busybox/files/cron
b/package/busybox/files/cron
index
e78d023
..
aa53896
100755
(executable)
--- a/
package/busybox/files/cron
+++ b/
package/busybox/files/cron
@@
-1,12
+1,15
@@
#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
+START=50
start () {
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
mkdir -p /var/spool/cron
[ -L /var/spool/cron/crontabs ] || ln -s /etc/crontabs /var/spool/cron/crontabs
- crond -c /etc/crontabs
+ crond -c /etc/crontabs
-l ${loglevel:-5}
}
stop() {
}
stop() {
- killall crond
+ killall
-9
crond
}
}
This page took
0.021217 seconds
and
4
git commands to generate.