2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-09-05 00:35:41 +00:00

Use make_resolv_conf as documented.

This commit is contained in:
Ted Lemon
2000-09-20 09:38:07 +00:00
parent db6960a7fa
commit cad0776d65
5 changed files with 17 additions and 60 deletions

View File

@@ -116,10 +116,7 @@ if [ x$reason = xBOUND ] || [ x$reason = xRENEW ] || \
$ifconfig ${interface}:1 inet $alias_ip_address $alias_subnet_arg
route add $alias_ip_address 127.0.0.1 1
fi
echo search $new_domain_name >/etc/resolv.conf
for nameserver in $new_domain_name_servers; do
echo nameserver $nameserver >>/etc/resolv.conf
done
make_resolv_conf
exit_with_hooks 0
fi
@@ -161,14 +158,7 @@ if [ x$reason = xTIMEOUT ]; then
for router in $new_routers; do
route add default $router 1 >/dev/null 2>&1
done
echo search $new_domain_name >/etc/resolv.conf.std
for nameserver in $new_domain_name_servers; do
echo nameserver $nameserver >>/etc/resolv.conf.std
done
if [ -f /etc/resolv.conf ]; then
rm -f /etc/resolv.conf
ln /etc/resolv.conf.std /etc/resolv.conf
fi
make_resolv_conf
exit_with_hooks 0
fi
$ifconfig $interface inet 0 down