From d4c03cdd539a40259cbbf3bb06c91c8a44918e08 Mon Sep 17 00:00:00 2001 From: nbd Date: Mon, 19 Mar 2007 22:06:31 +0000 Subject: [PATCH] add an optional parameter to scan_interfaces() that can override the network config file (defaults to 'network') git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6619 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/base-files/files/lib/network/config.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package/base-files/files/lib/network/config.sh b/package/base-files/files/lib/network/config.sh index 8a596874d..cab2e06f0 100755 --- a/package/base-files/files/lib/network/config.sh +++ b/package/base-files/files/lib/network/config.sh @@ -24,6 +24,7 @@ find_config() { } scan_interfaces() { + local cfgfile="$1" local mode iftype iface ifname device interfaces= config_cb() { @@ -50,7 +51,7 @@ scan_interfaces() { ;; esac } - config_load network + config_load "${cfgfile:-network}" } add_vlan() { -- 2.35.1