From 3dfe3fef0d7e8274ad406cb8ad95be2062efe28d Mon Sep 17 00:00:00 2001 From: Baptiste Jonglez Date: Fri, 1 Sep 2017 15:24:13 +0200 Subject: [PATCH] Rename nsd_common_config to nsd_server_config and nsd_local_config to nsd_local_server_config --- templates/config.j2 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/config.j2 b/templates/config.j2 index b6bcea2..85fe44d 100644 --- a/templates/config.j2 +++ b/templates/config.j2 @@ -13,16 +13,16 @@ # Do not edit by hand! server: -{% if nsd_common_config is defined %} +{% if nsd_server_config is defined %} # Common configuration -{% for key, value in nsd_common_config.iteritems() -%} +{% for key, value in nsd_server_config.iteritems() -%} {{ expand_list(key, value) }} {%- endfor %} {% endif %} -{% if nsd_local_config is defined %} +{% if nsd_local_server_config is defined %} # Local configuration -{% for key, value in nsd_local_config.iteritems() -%} +{% for key, value in nsd_local_server_config.iteritems() -%} {{ expand_list(key, value) }} {%- endfor %} {% endif %}