Use correct variable for sso_callback_template deployment
The sso_callback_template file needs to be deployed for a Keystone SP, not IDP. This patch fixes the conditional. Closes-Bug: #1772772 Change-Id: I420e291807434382b4d3cd4c8809c7540a419f5a
This commit is contained in:
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
fixes:
|
||||||
|
- |
|
||||||
|
The conditional that determines whether the ``sso_callback_template.html``
|
||||||
|
file is deployed for federated deployments has been fixed.
|
@@ -96,7 +96,7 @@
|
|||||||
group: "{{ keystone_system_group_name }}"
|
group: "{{ keystone_system_group_name }}"
|
||||||
mode: "0644"
|
mode: "0644"
|
||||||
when:
|
when:
|
||||||
- keystone_idp != {}
|
- keystone_sp != {}
|
||||||
notify:
|
notify:
|
||||||
- Manage LB
|
- Manage LB
|
||||||
- Restart uWSGI
|
- Restart uWSGI
|
||||||
@@ -107,7 +107,7 @@
|
|||||||
path: "/etc/keystone/sso_callback_template.html"
|
path: "/etc/keystone/sso_callback_template.html"
|
||||||
state: absent
|
state: absent
|
||||||
when:
|
when:
|
||||||
- keystone_idp == {}
|
- keystone_sp == {}
|
||||||
notify:
|
notify:
|
||||||
- Manage LB
|
- Manage LB
|
||||||
- Restart uWSGI
|
- Restart uWSGI
|
||||||
|
Reference in New Issue
Block a user