forked from ISTI-ansible-roles/ansible-roles
Fix some typos in the global variables and the templates.
This commit is contained in:
parent
5aaf0e8968
commit
8227a2462a
|
@ -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: '' }
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 %}
|
||||
|
|
Loading…
Reference in New Issue