From: Mike Baker Date: Thu, 10 May 2007 10:38:53 +0000 (+0000) Subject: START/STOP values must be specified in the init script X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=f540946d86b0946272cd504510ff927e7890178c START/STOP values must be specified in the init script SVN-Revision: 7164 --- diff --git a/package/base-files/files/etc/rc.common b/package/base-files/files/etc/rc.common index 7ca107817d..453cdbf33a 100755 --- a/package/base-files/files/etc/rc.common +++ b/package/base-files/files/etc/rc.common @@ -3,8 +3,6 @@ . $IPKG_INSTROOT/etc/functions.sh -START=50 - start() { return 0 } @@ -34,13 +32,14 @@ shutdown() { disable() { name="$(basename "${initscript}")" rm -f "$IPKG_INSTROOT"/etc/rc.d/S??$name + rm -f "$IPKG_INSTROOT"/etc/rc.d/K??$name } enable() { name="$(basename "${initscript}")" disable - ln -s "/etc/init.d/$name" "$IPKG_INSTROOT/etc/rc.d/S${START}${name##S[0-9][0-9]}" - [ "$STOP" ] && ln -s "/etc/init.d/$name" "$IPKG_INSTROOT/etc/rc.d/K${START}${name##K[0-9][0-9]}" + [ "$START" ] && ln -s "/etc/init.d/$name" "$IPKG_INSTROOT/etc/rc.d/S${START}${name##S[0-9][0-9]}" + [ "$STOP" ] && ln -s "/etc/init.d/$name" "$IPKG_INSTROOT/etc/rc.d/K${START}${name##K[0-9][0-9]}" } enabled() { diff --git a/package/br2684ctl/files/br2684ctl b/package/br2684ctl/files/br2684ctl index b3ea34efcd..b121c7a4a5 100755 --- a/package/br2684ctl/files/br2684ctl +++ b/package/br2684ctl/files/br2684ctl @@ -1,4 +1,6 @@ #!/bin/sh /etc/rc.common +START=50 + stop() { killall br2684ctl 2>/dev/null >/dev/null sleep 1 diff --git a/package/busybox/files/cron b/package/busybox/files/cron index e78d02332c..cf0f725d3e 100755 --- a/package/busybox/files/cron +++ b/package/busybox/files/cron @@ -1,5 +1,6 @@ #!/bin/sh /etc/rc.common # Copyright (C) 2006 OpenWrt.org +START=50 start () { mkdir -p /var/spool/cron diff --git a/package/busybox/files/httpd b/package/busybox/files/httpd index e4f5f48e9c..35b7f62948 100755 --- a/package/busybox/files/httpd +++ b/package/busybox/files/httpd @@ -1,5 +1,6 @@ #!/bin/sh /etc/rc.common # Copyright (C) 2006 OpenWrt.org +START=50 start() { include /lib/network diff --git a/package/busybox/files/telnet b/package/busybox/files/telnet index c61fe73ad5..5802584029 100755 --- a/package/busybox/files/telnet +++ b/package/busybox/files/telnet @@ -1,5 +1,6 @@ #!/bin/sh /etc/rc.common # Copyright (C) 2006 OpenWrt.org +START=50 start() { if [ \! -f /etc/passwd ] || \ diff --git a/package/dropbear/files/dropbear.init b/package/dropbear/files/dropbear.init index b629c1e48e..f671df787e 100755 --- a/package/dropbear/files/dropbear.init +++ b/package/dropbear/files/dropbear.init @@ -1,5 +1,6 @@ #!/bin/sh /etc/rc.common # Copyright (C) 2006 OpenWrt.org +START=50 # Copyright (C) 2006 Carlos Sobrinho config_cb() {