fix ifup (no longer use the to-be-reverted state of the previous config)
authorFelix Fietkau <nbd@openwrt.org>
Fri, 28 Nov 2008 16:13:23 +0000 (16:13 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Fri, 28 Nov 2008 16:13:23 +0000 (16:13 +0000)
SVN-Revision: 13398

package/base-files/files/sbin/ifup

index 81ec2c08908a8f168b0ce1d396525af292a40c48..96f7bea3576d9f4dec98bb6b7e98beb99a825753 100755 (executable)
@@ -1,11 +1,23 @@
 #!/bin/sh
 # Copyright (C) 2006 OpenWrt.org
 
-/sbin/ifdown "$@"
+/sbin/ifdown "$@"
 
-config_get iftype "$1" type
-config_get ifname "$1" device
+. /etc/functions.sh
+[ $# = 0 ] && { echo "  $0 <group>"; exit; }
+[ "x$1" = "x-a" ] && {
+       [ -e "/tmp/resolv.conf.auto" ] && rm /tmp/resolv.conf.auto
+       config_cb() {
+               [ interface != "$1" -o -z "$2" ] || eval "$0 $2"
+       }
+       config_load network
+       exit
+}
+
+include /lib/network
+scan_interfaces
 
+config_get ifname "$1" device
 for dev in $ifname; do
        setup_interface "$dev" "$1"
 done