Skip to content

Commit

Permalink
Add SSO feature exclusion changes to 23.0.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
kabicin committed Oct 4, 2023
1 parent 3069632 commit 971ac9f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion releases/23.0.0.10/full/helpers/build/configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,9 @@ function main() {
fi

if [[ -n "$SEC_SSO_PROVIDERS" ]]; then
cp $SNIPPETS_SOURCE/sso-features.xml $SNIPPETS_TARGET_DEFAULTS
if [[ "$EXCLUDE_CONFIG_SSO_FEATURES" != "true" ]]; then
cp $SNIPPETS_SOURCE/sso-features.xml $SNIPPETS_TARGET_DEFAULTS
fi
parseProviders $SEC_SSO_PROVIDERS
fi

Expand Down
2 changes: 1 addition & 1 deletion releases/23.0.0.10/kernel-slim/helpers/build/features.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ if [ -n "$INFINISPAN_SERVICE_NAME" ] || [ "${HZ_SESSION_CACHE}" == "client" ] ||
fi

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

Expand Down

0 comments on commit 971ac9f

Please sign in to comment.