We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3069632 commit 971ac9fCopy full SHA for 971ac9f
2 files changed
releases/23.0.0.10/full/helpers/build/configure.sh
@@ -86,7 +86,9 @@ function main() {
86
fi
87
88
if [[ -n "$SEC_SSO_PROVIDERS" ]]; then
89
- cp $SNIPPETS_SOURCE/sso-features.xml $SNIPPETS_TARGET_DEFAULTS
+ if [[ "$EXCLUDE_CONFIG_SSO_FEATURES" != "true" ]]; then
90
+ cp $SNIPPETS_SOURCE/sso-features.xml $SNIPPETS_TARGET_DEFAULTS
91
+ fi
92
parseProviders $SEC_SSO_PROVIDERS
93
94
releases/23.0.0.10/kernel-slim/helpers/build/features.sh
@@ -20,7 +20,7 @@ if [ -n "$INFINISPAN_SERVICE_NAME" ] || [ "${HZ_SESSION_CACHE}" == "client" ] ||
20
21
22
# SSO
23
-if [[ -n "$SEC_SSO_PROVIDERS" ]]; then
+if [[ -n "$SEC_SSO_PROVIDERS" ]] && [[ "$EXCLUDE_CONFIG_SSO_FEATURES" != "true" ]]; then
24
cp $SNIPPETS_SOURCE/sso-features.xml $SNIPPETS_TARGET_DEFAULTS
25
26
0 commit comments