Skip to content

Commit 1515037

Browse files
kabicinkabicin
authored andcommitted
Update 22.0.0.8
1 parent c8ea97a commit 1515037

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ga/22.0.0.8/kernel/helpers/build/configure.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,11 @@ function main() {
8484
# Install needed features
8585
if [ "$FEATURE_REPO_URL" ]; then
8686
curl -k --fail $FEATURE_REPO_URL > /tmp/repo.zip
87-
installUtility install --acceptLicense defaultServer --from=/tmp/repo.zip || rc=$?; if [ $rc -ne 22 ]; then exit $rc; fi
87+
installUtility install --acceptLicense ${SERVER_NAME} --from=/tmp/repo.zip || rc=$?; if [ $rc -ne 22 ]; then exit $rc; fi
8888
rm -rf /tmp/repo.zip
8989
# Otherwise, if features.sh did not run, install server features.
9090
elif [ "$FEATURES_INSTALLED" == "false" ]; then
91-
featureUtility installServerFeatures --acceptLicense defaultServer --noCache
91+
featureUtility installServerFeatures --acceptLicense ${SERVER_NAME} --noCache
9292
find /opt/ibm/wlp/lib /opt/ibm/wlp/bin ! -perm -g=rw -print0 | xargs -0 -r chmod g+rw
9393
fi
9494
fi

ga/22.0.0.8/kernel/helpers/build/features.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ if [ "$SSL" == "true" ] || [ "$TLS" == "true" ]; then
4848
fi
4949

5050
# Install necessary features using featureUtility
51-
featureUtility installServerFeatures --acceptLicense defaultServer --noCache
51+
featureUtility installServerFeatures --acceptLicense ${SERVER_NAME} --noCache
5252
find /opt/ibm/wlp/lib /opt/ibm/wlp/bin ! -perm -g=rw -print0 | xargs -0 -r chmod g+rw

0 commit comments

Comments
 (0)