From 95a3e0abf2210086531f4e0dae5cc98fde36b749 Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Thu, 17 Aug 2017 09:49:28 -0500 Subject: [PATCH] Correct the "dns_domain" option by default The "dns_domain" option needs to end in a "." to have a proper DNS name. This change adds the sinle period and quites the string. Change-Id: I000137b4071ea9ee2fae00eef7dfa4fa9fcadf3e Signed-off-by: Kevin Carter --- defaults/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/defaults/main.yml b/defaults/main.yml index dde11c74..685df9bc 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -82,7 +82,7 @@ neutron_report_interval: "{{ neutron_agent_down_time | int / 2 | int }}" neutron_external_network_bridge: "" -neutron_dns_domain: openstacklocal +neutron_dns_domain: "openstacklocal." # If ``neutron_num_sync_threads`` is unset, the system will use the value of # neutron_api_threads in templates/dhcp_agent.ini.j2 for num_sync_threads.