dnsmasq: only write search directive if domain is actually set
SVN-Revision: 19090
This commit is contained in:
parent
46783f81ee
commit
f40e9e8d8a
1 changed files with 1 additions and 1 deletions
|
@ -311,11 +311,11 @@ start() {
|
||||||
|
|
||||||
/usr/sbin/dnsmasq $args && {
|
/usr/sbin/dnsmasq $args && {
|
||||||
rm -f /tmp/resolv.conf
|
rm -f /tmp/resolv.conf
|
||||||
|
[ -n "$DOMAIN" ] && echo "search $DOMAIN" >> /tmp/resolv.conf
|
||||||
DNS_SERVERS="$DNS_SERVERS 127.0.0.1"
|
DNS_SERVERS="$DNS_SERVERS 127.0.0.1"
|
||||||
for DNS_SERVER in $DNS_SERVERS ; do
|
for DNS_SERVER in $DNS_SERVERS ; do
|
||||||
echo "nameserver $DNS_SERVER" >> /tmp/resolv.conf
|
echo "nameserver $DNS_SERVER" >> /tmp/resolv.conf
|
||||||
done
|
done
|
||||||
echo "search $DOMAIN" >> /tmp/resolv.conf
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue