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
This commit is contained in:
Dmitry Tantsur 2020-06-04 16:50:06 +02:00
parent 508899cc6b
commit b86f478228
2 changed files with 6 additions and 1 deletions

View File

@ -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

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Fixes failure to install on systems with a local resolved by setting
``disable_dnsmasq_dns`` to ``True`` by default.