1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-14 20:22:08 +00:00

Merge pull request #2402 from jvonau/dns_null

yaml set the variable wan_nameserver as 'null' without quotes
This commit is contained in:
A Holt 2020-05-11 12:10:22 -04:00 committed by GitHub
commit 930052c619
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
#IIAB
bind-interfaces
# Wan nameserver if manually set
{% if wan_nameserver != "" %}
{% if wan_nameserver is not none %}
no-resolv
server={{ wan_nameserver }}
{% endif %}