Skip to content

Commit 971ac9f

Browse files
committed
Add SSO feature exclusion changes to 23.0.0.10
1 parent 3069632 commit 971ac9f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

releases/23.0.0.10/full/helpers/build/configure.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,9 @@ function main() {
8686
fi
8787

8888
if [[ -n "$SEC_SSO_PROVIDERS" ]]; then
89-
cp $SNIPPETS_SOURCE/sso-features.xml $SNIPPETS_TARGET_DEFAULTS
89+
if [[ "$EXCLUDE_CONFIG_SSO_FEATURES" != "true" ]]; then
90+
cp $SNIPPETS_SOURCE/sso-features.xml $SNIPPETS_TARGET_DEFAULTS
91+
fi
9092
parseProviders $SEC_SSO_PROVIDERS
9193
fi
9294

releases/23.0.0.10/kernel-slim/helpers/build/features.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if [ -n "$INFINISPAN_SERVICE_NAME" ] || [ "${HZ_SESSION_CACHE}" == "client" ] ||
2020
fi
2121

2222
# SSO
23-
if [[ -n "$SEC_SSO_PROVIDERS" ]]; then
23+
if [[ -n "$SEC_SSO_PROVIDERS" ]] && [[ "$EXCLUDE_CONFIG_SSO_FEATURES" != "true" ]]; then
2424
cp $SNIPPETS_SOURCE/sso-features.xml $SNIPPETS_TARGET_DEFAULTS
2525
fi
2626

0 commit comments

Comments
 (0)