diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-05-07 01:17:47 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-05-07 01:17:47 +0000 |
commit | 58cc0f2aceaa138174e6da26cd2ecc2a1fa3b66c (patch) | |
tree | 9974a3ad20d6843e18f0cc114bdcbc0ab18fdd06 /package | |
parent | 52daa0e967cbc738f9133bfb9f42a8a1a7a4d8bb (diff) | |
download | upstream-58cc0f2aceaa138174e6da26cd2ecc2a1fa3b66c.tar.gz upstream-58cc0f2aceaa138174e6da26cd2ecc2a1fa3b66c.tar.bz2 upstream-58cc0f2aceaa138174e6da26cd2ecc2a1fa3b66c.zip |
[package] base-files: add add_dns() and remove_dns() helpers to network config, useful to merge dns entries from multiple interfaces
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21391 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rwxr-xr-x | package/base-files/files/lib/network/config.sh | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/package/base-files/files/lib/network/config.sh b/package/base-files/files/lib/network/config.sh index 4336244f6e..1a77145f5a 100755 --- a/package/base-files/files/lib/network/config.sh +++ b/package/base-files/files/lib/network/config.sh @@ -66,6 +66,35 @@ add_vlan() { return 1 } +# add dns entries if they are not in resolv.conf yet +add_dns() { + local cfg="$1"; shift + + local dns + local add + for dns in "$@"; do + grep -qsF "nameserver $dns" /tmp/resolv.conf.auto || { + add="${add:+$add }$dns" + echo "nameserver $dns" >> /tmp/resolv.conf.auto + } + done + + uci_set_state network "$cfg" dns "$add" +} + +# remove dns entries of the given iface +remove_dns() { + local cfg="$1" + + local dns + config_get dns "$cfg" dns + for dns in $dns; do + sed -i -e "/^nameserver $dns$/d" /tmp/resolv.conf.auto + done + + uci_revert_state network "$cfg" dns +} + # sort the device list, drop duplicates sort_list() { local arg="$*" |