Fix some typos in the global variables and the templates.

This commit is contained in:
Andrea Dell'Amico 2018-05-15 18:27:37 +02:00
parent 5aaf0e8968
commit 8227a2462a
3 changed files with 4 additions and 2 deletions

View File

@ -22,9 +22,10 @@ powerdns_auth_db_pkgs:
- 'pdns-backend-{{ powerdns_auth_db_backend }}'
powerdns_auth_backend_data:
- { key: 'gpgsql-host', value: '127.0.0.1' }
- { key: 'gpgsql-port', value: 5432 }
- { key: 'gpgsql-dbname', value: '' }
- { key: 'dpgsql-user', value: '' }
- { key: 'gpgsql-user', value: '' }
- { key: 'gpgsql-password', value: '' }
- { key: 'gpgsql-dnssec', value: '' }
- { key: 'gpgsql-extra-connection-parameters', value: '' }

View File

@ -20,7 +20,7 @@
notify: Restart powerdns
- name: Install the powerdns local configuration file
template: src=pdns.conf dest=/etc/powerdns/pdns.d/pdns.local.conf owner=root group=root mode=0600
template: src=pdns.local.conf dest=/etc/powerdns/pdns.d/pdns.local.conf owner=root group=root mode=0600
notify: Restart powerdns
- name: Ensure that powerdns is running and enabled

View File

@ -1,4 +1,5 @@
{% if powerdns_auth_use_db_backend %}
{% for bk_data in powerdns_auth_backend_data %}
{{ bk_data.key }}={{ bk_data.value }}
{% endfor %}
{% endif %}