[package] base-files: do not pass --set-worker /lib/hotplug2/worker_fork.so to hotplu...
[openwrt/svn-archive/archive.git] / package / base-files / files / etc / rc.common
index 6ec88aef9c1e20040bb605235207f0ca0d4ee79b..79424a637da9dd78970aefb9974df5746252a15b 100755 (executable)
@@ -1,5 +1,5 @@
 #!/bin/sh
-# Copyright (C) 2006-2009 OpenWrt.org
+# Copyright (C) 2006-2011 OpenWrt.org
 
 . $IPKG_INSTROOT/etc/functions.sh
 
@@ -42,6 +42,10 @@ disable() {
 enable() {
        name="$(basename "${initscript}")"
        disable
+       [ -n "$START" -o -n "$STOP" ] || {
+               echo "/etc/init.d/$name does not have a START or STOP value"
+               return 1
+       }
        [ "$START" ] && ln -s "../init.d/$name" "$IPKG_INSTROOT/etc/rc.d/S${START}${name##S[0-9][0-9]}"
        [ "$STOP"  ] && ln -s "../init.d/$name" "$IPKG_INSTROOT/etc/rc.d/K${STOP}${name##K[0-9][0-9]}"
 }