fix FreeIPA dns server issue

Do not set the nameserver from the virthost if
FreeIPA is used.

Closes-Bug: #1709333
Change-Id: I135b9cdbdc049656d8ad514aedf2b35e4eef7f34
This commit is contained in:
Wes Hayutin 2017-08-08 15:10:06 -04:00
parent 9504348c1f
commit 59344567a2
1 changed files with 8 additions and 1 deletions

View File

@ -7,4 +7,11 @@ enable_port_forward_for_tripleo_ui: true
# Please consult the tripleo-quickstart documentation prior to enabling this option
tripleo_ui_secure_access: false
nameserver_from_virthost: true
# Note this needs to be false for freeIPA
# https://bugs.launchpad.net/tripleo/+bug/1709333
nameserver_from_virthost: >-
{% if overcloud_cloud_domain is defined -%}
false
{%- else -%}
true
{%- endif -%}