File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
ga/22.0.0.8/kernel/helpers/build Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -48,5 +48,5 @@ if [ "$SSL" == "true" ] || [ "$TLS" == "true" ]; then
4848fi
4949
5050# Install necessary features using featureUtility
51- featureUtility installServerFeatures --acceptLicense defaultServer --noCache
51+ featureUtility installServerFeatures --acceptLicense ${SERVER_NAME} --noCache
5252find /opt/ibm/wlp/lib /opt/ibm/wlp/bin ! -perm -g=rw -print0 | xargs -0 -r chmod g+rw
You can’t perform that action at this time.
0 commit comments