diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-01-02 15:42:42 -0500 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-01-02 15:42:42 -0500 |
commit | c6a770bd1a6cab43ec4282043bf4f5d6e175c19c (patch) | |
tree | a478467aeeb1d3ab47c07cdbacaa7f0a58f1f584 /roles/nameservers/templates/named.conf.local.replica.j2 | |
parent | 1f9f2b7608d3915d2f8a3a556db19c27040d3a4d (diff) | |
download | oldinfra-c6a770bd1a6cab43ec4282043bf4f5d6e175c19c.tar.gz oldinfra-c6a770bd1a6cab43ec4282043bf4f5d6e175c19c.zip |
initial headscale foo & dns updates
Diffstat (limited to 'roles/nameservers/templates/named.conf.local.replica.j2')
-rw-r--r-- | roles/nameservers/templates/named.conf.local.replica.j2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/nameservers/templates/named.conf.local.replica.j2 b/roles/nameservers/templates/named.conf.local.replica.j2 index bb14d7d..1313cba 100644 --- a/roles/nameservers/templates/named.conf.local.replica.j2 +++ b/roles/nameservers/templates/named.conf.local.replica.j2 @@ -1,7 +1,7 @@ {% for zone in dns_zones %} -zone "{{ zone.zone_name }}" { +zone "{{ zone.zone }}" { type slave; - file "db.{{ zone.zone_name }}"; + file "db.{{ zone.zone }}"; masters { {{ dns_primary_ip }}; }; }; {% endfor %} |