init: don't start hotplug2 if it doesn't exist
[openwrt/svn-archive/archive.git] / package / base-files / files / etc / init.d / boot
index 7181f8b0043781713be9fde4bc1e03571a04d88c..b524c39c64d3a2497e3f7893744aa5398b5e45f7 100755 (executable)
@@ -35,12 +35,14 @@ start() {
        mkdir -p /var/run
        mkdir -p /var/log
        mkdir -p /var/lock
+       mkdir -p /var/state
        touch /var/log/wtmp
        touch /var/log/lastlog
-       ln -s /tmp/resolv.conf.auto /tmp/resolv.conf
+       ln -sf /tmp/resolv.conf.auto /tmp/resolv.conf
        [ "$FAILSAFE" = "true" ] && touch /tmp/.failsafe
-       
-       /sbin/hotplug2 --persistent --max-children 1 &
+
+       [ -x /sbin/hotplug2 ] && /sbin/hotplug2 --override --persistent \
+                       --max-children 1 --no-coldplug &
 
        # the coldplugging of network interfaces needs to happen later, so we do it manually here
        for iface in $(awk -F: '/:/ {print $1}' /proc/net/dev); do