adds the option to have no proto for a interface, usefull if the uci states need to be set, but interface bring up is handled somewhere else
SVN-Revision: 12343
This commit is contained in:
parent
9e17c77236
commit
3cf1a8932b
@ -142,6 +142,10 @@ set_interface_ifname() {
|
|||||||
uci_set_state network "$config" device "$device"
|
uci_set_state network "$config" device "$device"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
setup_interface_none() {
|
||||||
|
env -i ACTION="ifup" INTERFACE="$config" DEVICE="$iface" PROTO=none /sbin/hotplug-call "iface" &
|
||||||
|
}
|
||||||
|
|
||||||
setup_interface_static() {
|
setup_interface_static() {
|
||||||
local iface="$1"
|
local iface="$1"
|
||||||
local config="$2"
|
local config="$2"
|
||||||
@ -259,6 +263,9 @@ setup_interface() {
|
|||||||
lock -u "/var/lock/dhcp-$iface"
|
lock -u "/var/lock/dhcp-$iface"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
none)
|
||||||
|
setup_interface_none "$iface" "$config"
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
if ( eval "type setup_interface_$proto" ) >/dev/null 2>/dev/null; then
|
if ( eval "type setup_interface_$proto" ) >/dev/null 2>/dev/null; then
|
||||||
eval "setup_interface_$proto '$iface' '$config' '$proto'"
|
eval "setup_interface_$proto '$iface' '$config' '$proto'"
|
||||||
|
Loading…
Reference in New Issue
Block a user