aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/files/usr
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2009-02-19 05:27:36 +0000
committerJo-Philipp Wich <jow@openwrt.org>2009-02-19 05:27:36 +0000
commit2d672ef2f55b546eef6f16a7eee9ca8de87096f8 (patch)
tree006cb8b42cb3b65731c9381a27295f612b751351 /package/base-files/files/usr
parent38a952aade21ba570999b78a1ce3ac32cbfad755 (diff)
downloadupstream-2d672ef2f55b546eef6f16a7eee9ca8de87096f8.tar.gz
upstream-2d672ef2f55b546eef6f16a7eee9ca8de87096f8.tar.bz2
upstream-2d672ef2f55b546eef6f16a7eee9ca8de87096f8.zip
base-files: allow option dns to override dhcp assigned dns servers
SVN-Revision: 14562
Diffstat (limited to 'package/base-files/files/usr')
-rwxr-xr-xpackage/base-files/files/usr/share/udhcpc/default.script33
1 files changed, 24 insertions, 9 deletions
diff --git a/package/base-files/files/usr/share/udhcpc/default.script b/package/base-files/files/usr/share/udhcpc/default.script
index 0eb044c512..198ef13c0f 100755
--- a/package/base-files/files/usr/share/udhcpc/default.script
+++ b/package/base-files/files/usr/share/udhcpc/default.script
@@ -14,12 +14,21 @@ hotplug_event() {
config_get proto $ifc proto
[ "$proto" = "dhcp" ] || continue
[ ifup = "$1" ] && {
+ config_get userdns "$ifc" dns
+ [ -n "$userdns" ] && {
+ for i in $userdns; do
+ echo "custom dns $i"
+ echo "nameserver $i" >> "${RESOLV_CONF}.tmp"
+ done
+ dns="$userdns"
+ }
uci_set_state network "$ifc" ipaddr "$ip"
uci_set_state network "$ifc" netmask "${subnet:-255.255.255.0}"
uci_set_state network "$ifc" dnsdomain "$domain"
uci_set_state network "$ifc" dns "$dns"
uci_set_state network "$ifc" gateway "$router"
}
+
env -i ACTION="$1" INTERFACE="$ifc" DEVICE="$ifname" PROTO=dhcp /sbin/hotplug-call iface
done
}
@@ -45,16 +54,9 @@ case "$1" in
echo "deleting old routes"
$(route -n | awk '/^0.0.0.0\W{9}('$valid')\W/ {next} /^0.0.0.0/ {print "route del -net "$1" gw "$2";"}')
}
-
- [ -n "$dns" ] && {
+
+ [ -n "$dns" ] && \
echo -n > "${RESOLV_CONF}.tmp"
- ${domain:+echo search $domain} >> "${RESOLV_CONF}.tmp"
- for i in $dns ; do
- echo "adding dns $i"
- echo "nameserver $i" >> "${RESOLV_CONF}.tmp"
- done
- mv "${RESOLV_CONF}.tmp" "$RESOLV_CONF"
- }
if [ "$1" = "renew" ]; then
hotplug_event update
@@ -62,6 +64,19 @@ case "$1" in
hotplug_event ifup
fi
+ [ -n "$dns" ] && {
+ [ -s "${RESOLV_CONF}.tmp" ] || {
+ for i in $dns ; do
+ echo "adding dns $i"
+ echo "nameserver $i" >> "${RESOLV_CONF}.tmp"
+ done
+ }
+
+ ${domain:+echo search $domain} >> "${RESOLV_CONF}.tmp"
+
+ mv "${RESOLV_CONF}.tmp" "$RESOLV_CONF"
+ }
+
# user rules
[ -f /etc/udhcpc.user ] && . /etc/udhcpc.user
;;