2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-09-02 15:25:48 +00:00

-n [master]

fixes in openwrt script from the lwds-lite lab as well
   as some cosmetic changes and updating other scripts to
   use two double quotes instead of two single quotes for
   empty zone ids.
   [rt29843]
This commit is contained in:
Shawn Routhier
2013-08-30 13:25:12 -07:00
parent 3cb6f9bb3d
commit f6dc164f6b
7 changed files with 39 additions and 28 deletions

View File

@@ -29,7 +29,7 @@ make_resolv_conf() {
case $nameserver in
fe80:*) zone_id="%$interface";;
FE80:*) zone_id="%$interface";;
*) zone_id='';;
*) zone_id="";;
esac
echo nameserver ${nameserver}$zone_id >> /etc/resolv.conf.dhclient6
done