aboutsummaryrefslogtreecommitdiffstats
path: root/package/utils/busybox/files
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2013-07-11 17:00:30 +0000
committerJohn Crispin <john@openwrt.org>2013-07-11 17:00:30 +0000
commit928b503435a4e9ef1f5ddefe52de29cf35be9683 (patch)
treebc07460df3a23d7307453082731b74d9ccb842c7 /package/utils/busybox/files
parente3a61156866e29e4da8ec2897b7b5819b080d932 (diff)
downloadupstream-928b503435a4e9ef1f5ddefe52de29cf35be9683.tar.gz
upstream-928b503435a4e9ef1f5ddefe52de29cf35be9683.tar.bz2
upstream-928b503435a4e9ef1f5ddefe52de29cf35be9683.zip
busybox: convert crond init script to procd
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 37243
Diffstat (limited to 'package/utils/busybox/files')
-rwxr-xr-xpackage/utils/busybox/files/cron16
1 files changed, 9 insertions, 7 deletions
diff --git a/package/utils/busybox/files/cron b/package/utils/busybox/files/cron
index 465b1ab45b..fa368098c2 100755
--- a/package/utils/busybox/files/cron
+++ b/package/utils/busybox/files/cron
@@ -3,16 +3,18 @@
START=50
-SERVICE_USE_PID=1
+USE_PROCD=1
+PROG=/usr/sbin/crond
+NAME=crond
+
+start_service () {
+ [ -z "$(ls /etc/crontabs/)" ] && return 1
-start () {
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
- service_start /usr/sbin/crond -c /etc/crontabs -l ${loglevel:-5}
-}
-stop() {
- service_stop /usr/sbin/crond
+ procd_open_instance
+ procd_set_param command "$PROG" -f -c /etc/crontabs -l ${loglevel:-5}
+ procd_close_instance
}