Use correct case for WEBSSO_ENABLED config setting

Horizon is picky about the case of the value used for the
WEBSSO_ENABLED setting in local_settings.  When enabled, it expects
the value to be "True".  Currently, we set it to "true", which
causes Horizon to throw a 500 error when accessing the login page.
This patch sets the value using the proper case.

Change-Id: Ic71a6c4b50556a1820a5f86bfc5a3e5102955c7b
This commit is contained in:
Nathan Kinder 2018-12-21 18:52:05 -08:00
parent a0468fd8cb
commit f3238a81d8
1 changed files with 1 additions and 1 deletions

View File

@ -308,7 +308,7 @@ OPENSTACK_KEYSTONE_DEFAULT_ROLE = "<%= @keystone_default_role %>"
# "acme_saml2": ("acme", "saml2")
#}
<% if @websso_enabled -%>
WEBSSO_ENABLED = <%= @websso_enabled %>
WEBSSO_ENABLED = True
<% end -%>
<% if @websso_initial_choice -%>
WEBSSO_INITIAL_CHOICE = "<%= @websso_initial_choice %>"