mirror of https://github.com/hak5/openwrt-owl.git
parent
6efb515be1
commit
ea06a67eac
|
@ -46,7 +46,7 @@ delif() {
|
|||
for ifc in $interfaces; do
|
||||
config_get iftype "$ifc" type
|
||||
config_get ifs "$ifc" device
|
||||
confdevs="$(uci get network.$ifc.ifname)"
|
||||
confdevs="$(uci_get network.$ifc.ifname)"
|
||||
for dev in $ifs; do
|
||||
[ "${dev%%\.*}" = "$INTERFACE" ] && {
|
||||
list_contains confdevs "$dev" || list_remove ifs "$dev"
|
||||
|
|
|
@ -11,11 +11,6 @@ change_state () {
|
|||
uci_set_state "$1" "$2" "$3" "$4"
|
||||
}
|
||||
|
||||
uci_get() {
|
||||
[ -n "$ifc" ] || return
|
||||
uci -P /dev/null get "$1" 2>/dev/null
|
||||
}
|
||||
|
||||
setup_interface () {
|
||||
local old_ip
|
||||
local old_broadcast
|
||||
|
|
Loading…
Reference in New Issue