Remove deprecated dict.iteritems method

It caused ansible to fail with:

  fatal: [XXX]: FAILED! => {"changed": false, "msg": "AnsibleUndefinedVariable: 'dict object' has no attribute 'iteritems'"}

This method has been removed in Python3: https://docs.ansible.com/ansible/2.5/dev_guide/testing/sanity/no-dict-iteritems.html
This commit is contained in:
Baptiste Jonglez 2018-05-25 15:57:33 +02:00
parent 86abb1857e
commit 3f225e7ec7
1 changed files with 2 additions and 2 deletions

View File

@ -15,14 +15,14 @@
server:
{% if nsd_server_config is defined %}
# Common configuration
{% for key, value in nsd_server_config.iteritems() -%}
{% for key, value in nsd_server_config.items() -%}
{{ expand_list(key, value) }}
{%- endfor %}
{% endif %}
{% if nsd_local_server_config is defined %}
# Local configuration
{% for key, value in nsd_local_server_config.iteritems() -%}
{% for key, value in nsd_local_server_config.items() -%}
{{ expand_list(key, value) }}
{%- endfor %}
{% endif %}