You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Terminate the process for the un-entitled or undefined user
64
-
if [ ${result}!=Entitled ];then
65
-
if [ ${result}=Unentitled ];then
67
+
if [ ${result}!=$ENTITLED ];then
68
+
if [ ${result}=$UNENTITLED ];then
66
69
echo"The provided IBM ID does not have entitlement to install WebSphere Application Server. Please contact the primary or secondary contacts for your IBM Passport Advantage site to grant you access or follow steps at IBM eCustomer Care (https://ibm.biz/IBMidEntitlement) for further assistance."
67
70
else
68
71
echo"No WebSphere Application Server installation packages were found. This is likely due to a temporary issue with the installation repository. Try again and open an IBM Support issue if the problem persists."
# Terminate the process for the un-entitled or undefined user
239
-
if [ ${result}!=Entitled ];then
240
-
if [ ${result}=Unentitled ];then
242
+
if [ ${result}!=$ENTITLED ];then
243
+
if [ ${result}=$UNENTITLED ];then
241
244
echo"The provided IBM ID does not have entitlement to install WebSphere Application Server. Please contact the primary or secondary contacts for your IBM Passport Advantage site to grant you access or follow steps at IBM eCustomer Care (https://ibm.biz/IBMidEntitlement) for further assistance."
242
245
else
243
246
echo"No WebSphere Application Server installation packages were found. This is likely due to a temporary issue with the installation repository. Try again and open an IBM Support issue if the problem persists."
@@ -267,9 +270,6 @@ storageAccountKey=$9
267
270
fileShareName=${10}
268
271
mountpointPath=${11}
269
272
270
-
# Get tWAS installation properties
271
-
source /datadrive/virtualimage.properties
272
-
273
273
# Create cluster by creating deployment manager, node agent & add nodes to be managed
0 commit comments