File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
ga/latest/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 @@ -186,11 +186,11 @@ function main() {
186186 # Install needed features
187187 if [ " $FEATURE_REPO_URL " ]; then
188188 curl -k --fail $FEATURE_REPO_URL > /tmp/repo.zip
189- installUtility install --acceptLicense defaultServer --from=/tmp/repo.zip || rc=$? ; if [ $rc -ne 22 ]; then exit $rc ; fi
189+ installUtility install --acceptLicense ${SERVER_NAME} --from=/tmp/repo.zip || rc=$? ; if [ $rc -ne 22 ]; then exit $rc ; fi
190190 rm -rf /tmp/repo.zip
191191 # Otherwise, if features.sh did not run, install server features.
192192 elif [ " $FEATURES_INSTALLED " == " false" ]; then
193- featureUtility installServerFeatures --acceptLicense defaultServer --noCache
193+ featureUtility installServerFeatures --acceptLicense ${SERVER_NAME} --noCache
194194 find /opt/ibm/wlp/lib /opt/ibm/wlp/bin ! -perm -g=rw -print0 | xargs -0 -r chmod g+rw
195195 fi
196196 fi
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ if [ "$SSL" == "true" ] || [ "$TLS" == "true" ]; then
5656fi
5757
5858# Install necessary features using featureUtility
59- featureUtility installServerFeatures --acceptLicense defaultServer --noCache
59+ featureUtility installServerFeatures --acceptLicense ${SERVER_NAME} --noCache
6060find /opt/ibm/wlp/lib /opt/ibm/wlp/bin ! -perm -g=rw -print0 | xargs -0 -r chmod g+rw
6161<<< <<< < HEAD
6262
You can’t perform that action at this time.
0 commit comments