summaryrefslogtreecommitdiffstats
path: root/package/base-files/files/etc/init.d/network
diff options
context:
space:
mode:
Diffstat (limited to 'package/base-files/files/etc/init.d/network')
-rwxr-xr-xpackage/base-files/files/etc/init.d/network5
1 files changed, 4 insertions, 1 deletions
diff --git a/package/base-files/files/etc/init.d/network b/package/base-files/files/etc/init.d/network
index d60d41a64..9d4904ae4 100755
--- a/package/base-files/files/etc/init.d/network
+++ b/package/base-files/files/etc/init.d/network
@@ -23,7 +23,10 @@ boot() {
local proto
config_get proto "$ifc" proto
- type "coldplug_interface_$proto" >/dev/null && \
+ local auto
+ config_get_bool auto "$ifc" auto 1
+
+ type "coldplug_interface_$proto" >/dev/null && [ "$auto" = 1 ] && \
coldplug_interface_$proto "$ifc"
done
}