Merge pull request #1273 from pi-hole/new/no_fixed_interface

Don't save `interface=` line to `dnsmasq`s config file
This commit is contained in:
Dan Schaper 2017-02-27 11:50:28 -08:00 committed by GitHub
commit ca24f7c143
2 changed files with 0 additions and 3 deletions

View File

@ -32,8 +32,6 @@ no-resolv
server=@DNS1@
server=@DNS2@
interface=@INT@
cache-size=10000
log-queries

View File

@ -608,7 +608,6 @@ version_check_dnsmasq() {
echo -n "::: Copying 01-pihole.conf to /etc/dnsmasq.d/01-pihole.conf..."
cp ${dnsmasq_pihole_01_snippet} ${dnsmasq_pihole_01_location}
echo " done."
sed -i "s/@INT@/$PIHOLE_INTERFACE/" ${dnsmasq_pihole_01_location}
if [[ "${PIHOLE_DNS_1}" != "" ]]; then
sed -i "s/@DNS1@/$PIHOLE_DNS_1/" ${dnsmasq_pihole_01_location}
else