Rename nsd_common_config to nsd_server_config and nsd_local_config to nsd_local_server_config

This commit is contained in:
Baptiste Jonglez 2017-09-01 15:24:13 +02:00
parent 9e4f5822d0
commit 3dfe3fef0d
1 changed files with 4 additions and 4 deletions

View File

@ -13,16 +13,16 @@
# Do not edit by hand! # Do not edit by hand!
server: server:
{% if nsd_common_config is defined %} {% if nsd_server_config is defined %}
# Common configuration # Common configuration
{% for key, value in nsd_common_config.iteritems() -%} {% for key, value in nsd_server_config.iteritems() -%}
{{ expand_list(key, value) }} {{ expand_list(key, value) }}
{%- endfor %} {%- endfor %}
{% endif %} {% endif %}
{% if nsd_local_config is defined %} {% if nsd_local_server_config is defined %}
# Local configuration # Local configuration
{% for key, value in nsd_local_config.iteritems() -%} {% for key, value in nsd_local_server_config.iteritems() -%}
{{ expand_list(key, value) }} {{ expand_list(key, value) }}
{%- endfor %} {%- endfor %}
{% endif %} {% endif %}