netifd: improve error handling in legacy script compatibility library, do not fill the log with error messages for interfaces that could not be found
SVN-Revision: 31432
This commit is contained in:
parent
3678ba60ca
commit
f37deb2b1b
|
@ -27,8 +27,8 @@ unbridge() {
|
||||||
|
|
||||||
ubus_call() {
|
ubus_call() {
|
||||||
json_init
|
json_init
|
||||||
local _data="$(ubus call "$1" "$2")"
|
local _data="$(ubus -S call "$1" "$2")"
|
||||||
[ $? -ne 0 ] && return "$?"
|
[ -z "$_data" ] && return 1
|
||||||
json_load "$_data"
|
json_load "$_data"
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
@ -43,7 +43,7 @@ fixup_interface() {
|
||||||
config_get device "$config" device "$ifname"
|
config_get device "$config" device "$ifname"
|
||||||
[ "bridge" = "$type" ] && ifname="br-$config"
|
[ "bridge" = "$type" ] && ifname="br-$config"
|
||||||
config_set "$config" device "$ifname"
|
config_set "$config" device "$ifname"
|
||||||
ubus_call "network.interface.$config" status
|
ubus_call "network.interface.$config" status || return 0
|
||||||
json_get_var l3dev l3_device
|
json_get_var l3dev l3_device
|
||||||
[ -n "$l3dev" ] && ifname="$l3dev"
|
[ -n "$l3dev" ] && ifname="$l3dev"
|
||||||
json_init
|
json_init
|
||||||
|
|
Loading…
Reference in New Issue