diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-03-19 22:06:31 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-03-19 22:06:31 +0000 |
commit | d4c03cdd539a40259cbbf3bb06c91c8a44918e08 (patch) | |
tree | 77092fbfd92ddcf7cb9691a425ec9e60984ba4e6 | |
parent | bc8948517fbeec1074bf693e4cdf204504df93c2 (diff) |
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
-rwxr-xr-x | package/base-files/files/lib/network/config.sh | 3 |
1 files changed, 2 insertions, 1 deletions
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() { |