File tree Expand file tree Collapse file tree 4 files changed +19
-3
lines changed Expand file tree Collapse file tree 4 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -137,6 +137,9 @@ modules:
137
137
# See eg. https://access.redhat.com/solutions/3402171 for details how to use
138
138
- name : sso-cli-extensions
139
139
140
+ # Various SSO image pre-launch actions to prevent regressions
141
+ - name : sso-pre-launch-actions
142
+
140
143
# Various SSO image pre-launch checks to prevent regressions
141
144
- name : sso-pre-launch-checks
142
145
Original file line number Diff line number Diff line change @@ -35,6 +35,3 @@ if grep -q "^$SECURERANDOM=.*" $JAVA_SECURITY_FILE; then
35
35
else
36
36
echo $SECURERANDOM =file:/dev/urandom >> $JAVA_SECURITY_FILE
37
37
fi
38
-
39
- # CIAM-1757: On each arch remove JDK 1.8 rpms if present (since using JDK 11 already)
40
- rpm --query --all name=java* version=1.8.0* | xargs rpm -e --nodeps
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ set -eu
3
+
4
+ # Import RH-SSO global variables & functions to image build-time
5
+ # shellcheck disable=SC1091
6
+ source " ${JBOSS_HOME} /bin/launch/sso-rcfile-definitions.sh"
7
+
8
+ # CIAM-1757: On each arch remove JDK 1.8 rpms if present (since using JDK 11 already)
9
+ rpm --query --all name=java* version=1.8.0* | xargs rpm -e --nodeps
Original file line number Diff line number Diff line change
1
+ schema_version : 1
2
+ name : sso-pre-launch-actions
3
+ version : ' 1.0'
4
+ description : Module to perform various RH-SSO image pre-launch actions to prevent regressions.
5
+
6
+ execute :
7
+ - script : configure.sh
You can’t perform that action at this time.
0 commit comments