projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
bcm63xx: add initial support for bcm6368 boards
[openwrt.git]
/
package
/
busybox
/
files
/
cron
diff --git
a/package/busybox/files/cron
b/package/busybox/files/cron
index
2e020bb
..
465b1ab
100755
(executable)
--- a/
package/busybox/files/cron
+++ b/
package/busybox/files/cron
@@
-1,15
+1,18
@@
#!/bin/sh /etc/rc.common
#!/bin/sh /etc/rc.common
-# Copyright (C) 2006 OpenWrt.org
+# Copyright (C) 2006-2011 OpenWrt.org
+
START=50
START=50
+SERVICE_USE_PID=1
+
start () {
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
ln -s /etc/crontabs /var/spool/cron/ 2>/dev/null
[ -z "$(ls /etc/crontabs/)" ] && exit 1
mkdir -p /var/spool/cron
ln -s /etc/crontabs /var/spool/cron/ 2>/dev/null
- crond -c /etc/crontabs -l ${loglevel:-5}
+
service_start /usr/sbin/
crond -c /etc/crontabs -l ${loglevel:-5}
}
stop() {
}
stop() {
-
killall -9
crond
+
service_stop /usr/sbin/
crond
}
}
This page took
0.027554 seconds
and
4
git commands to generate.