KEYCLOAK-17947 Propagate security domain to ejb

same fix as in https://github.com/keycloak/keycloak/pull/5977 just for the offline installer
This commit is contained in:
Patrick Zeller 2021-05-03 18:04:13 +02:00 committed by Pedro Igor
parent a25c70784c
commit 7d26b245de

View file

@ -56,4 +56,10 @@ if (outcome != success) of /subsystem=undertow/application-security-domain=other
/subsystem=undertow/application-security-domain=other:add(http-authentication-factory=keycloak-http-authentication)
else
echo Undertow already configured with Keycloak
end-if
if (outcome != success) of /subsystem=ejb3/application-security-domain=other:read-resource
/subsystem=ejb3/application-security-domain=other:add(security-domain=KeycloakDomain)
else
echo EJB already configured with Keycloak
end-if