use absolute paths in include() shell function
[openwrt/staging/dedeckeh.git] / openwrt / package / base-files / default / etc / hotplug.d / net / 10-net
index d5b7f6b0fadf2d5f5c0bdcee594cc8d1f0c2bc13..0a24b052f3c2f0c94cf19f2ce37623dc4eddec02 100644 (file)
@@ -1,15 +1,15 @@
 # Copyright (C) 2006 OpenWrt.org
 
-include network
+include /lib/network
 
 addif() {
        scan_interfaces
        setup_interface "$INTERFACE"
-       
+
        # find all vlan configurations for this interface and set them up as well
        for ifc in $interfaces; do
-               config_get type "$ifc" type
-               case "$type" in
+               config_get iftype "$ifc" type
+               case "$iftype" in
                        bridge) config_get ifs "$ifc" ifnames;;
                        *) config_get ifs "$ifc" ifname;;
                esac