Skip to content
Snippets Groups Projects
Commit dac5ed38 authored by Jo-Philipp Wich's avatar Jo-Philipp Wich
Browse files

base-files: remove route enabled check in lib/functions/network.sh after netifd bump

SVN-Revision: 33391
parent 90c6994a
No related branches found
No related tags found
No related merge requests found
......@@ -49,7 +49,6 @@ __network_gateway()
local __tmp="$(ubus call network.interface."$__iface" status 2>/dev/null)"
local __idx=1
local __enabled
json_load "${__tmp:-{}}"
......@@ -61,10 +60,9 @@ __network_gateway()
json_select "$((__idx++))"
json_get_var __tmp target
json_get_var __enabled enabled
case "${__enabled}/${__family}/${__tmp}" in
1/4/0.0.0.0|1/6/::)
case "${__family}/${__tmp}" in
4/0.0.0.0|6/::)
json_get_var "$__var" nexthop
return $?
;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment