From b86f4782284417d6745fde107f90fe6ddce17412 Mon Sep 17 00:00:00 2001 From: Dmitry Tantsur Date: Thu, 4 Jun 2020 16:50:06 +0200 Subject: [PATCH] Set disable_dnsmasq_dns to True We don't use its DNS capabilities, and leaving DNS enabled conflicts with the local resolved on at least Bionic. Story: #2007691 Task: #39834 Change-Id: I1ebd51a9414bb9686aa92376b34f38c029846c07 --- playbooks/roles/bifrost-ironic-install/defaults/main.yml | 2 +- releasenotes/notes/disable_dnsmasq_dns-0d545cdaa81b92a2.yaml | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 releasenotes/notes/disable_dnsmasq_dns-0d545cdaa81b92a2.yaml diff --git a/playbooks/roles/bifrost-ironic-install/defaults/main.yml b/playbooks/roles/bifrost-ironic-install/defaults/main.yml index 9b05de0ff..131b52442 100644 --- a/playbooks/roles/bifrost-ironic-install/defaults/main.yml +++ b/playbooks/roles/bifrost-ironic-install/defaults/main.yml @@ -97,7 +97,7 @@ mysql_password: "" # an odd variable expansion issue on fedora blocking migration to fedora-27 that this # should fix.... ironic_db_password: aSecretPassword473z -disable_dnsmasq_dns: False +disable_dnsmasq_dns: True ironic_git_folder: /opt/stack/ironic ironicclient_git_folder: /opt/stack/python-ironicclient openstacksdk_git_folder: /opt/stack/openstacksdk diff --git a/releasenotes/notes/disable_dnsmasq_dns-0d545cdaa81b92a2.yaml b/releasenotes/notes/disable_dnsmasq_dns-0d545cdaa81b92a2.yaml new file mode 100644 index 000000000..fad851b05 --- /dev/null +++ b/releasenotes/notes/disable_dnsmasq_dns-0d545cdaa81b92a2.yaml @@ -0,0 +1,5 @@ +--- +fixes: + - | + Fixes failure to install on systems with a local resolved by setting + ``disable_dnsmasq_dns`` to ``True`` by default.