diff --git a/bin/commands/support/verify-fingerprints/index.sh b/bin/commands/support/verify-fingerprints/index.sh
index 0044c5e48a..3a67cc129b 100644
--- a/bin/commands/support/verify-fingerprints/index.sh
+++ b/bin/commands/support/verify-fingerprints/index.sh
@@ -63,7 +63,10 @@ print_message "- Calculate hashes of Zowe files"
cust_hashes=$(create_tmp_file "${tmp_file_prefix}")
result=$(java -cp "${ZWE_zowe_runtimeDirectory}/bin/utils/" HashFiles "${all_files}" | sort > "${cust_hashes}")
code=$?
-if [ ${code} -eq 1 -o ! -f "${cust_hashes}" ]; then
+if [ -f "${cust_hashes}" ]; then
+ file_size_check=$(wc -l "${cust_hashes}" | awk '{print $1}')
+fi
+if [ "${code}" -eq 1 -o ! -f "${cust_hashes}" -o "${file_size_check}" -eq 0 ]; then
print_error " * Error ZWEL0151E: Failed to create temporary file ${cust_hashes}. Please check permission or volume free space."
print_error " * Exit code: ${code}"
print_error " * Output:"
diff --git a/bin/libs/java.sh b/bin/libs/java.sh
index b610ebe58f..bf62ce6c9a 100644
--- a/bin/libs/java.sh
+++ b/bin/libs/java.sh
@@ -83,7 +83,7 @@ require_java() {
fi
if [ -z "${JAVA_HOME}" ]; then
- print_error_and_exit "Error ZWEL0122E: Cannot find java. Set the java.path value in the Zowe YAML, or include java in the PATH environment variable of any accounts that start or manage Zowe" "" 122
+ print_error_and_exit "Error ZWEL0122E: Cannot find java. Set the java.home value in the Zowe YAML, or include java in the PATH environment variable of any accounts that start or manage Zowe" "" 122
fi
ensure_java_is_on_path
diff --git a/bin/libs/node.sh b/bin/libs/node.sh
index 4386be9005..d457c76b2f 100644
--- a/bin/libs/node.sh
+++ b/bin/libs/node.sh
@@ -94,7 +94,7 @@ require_node() {
fi
if [ -z "${NODE_HOME}" ]; then
- print_error_and_exit "Error ZWEL0121E: Cannot find node. Set the node.path value in the Zowe YAML, or include node in the PATH environment variable of any accounts that start or manage Zowe" "" 121
+ print_error_and_exit "Error ZWEL0121E: Cannot find node. Set the node.home value in the Zowe YAML, or include node in the PATH environment variable of any accounts that start or manage Zowe" "" 121
fi
ensure_node_is_on_path
diff --git a/bin/libs/zosmf.ts b/bin/libs/zosmf.ts
index 89bddfa108..949c0eddf6 100644
--- a/bin/libs/zosmf.ts
+++ b/bin/libs/zosmf.ts
@@ -31,7 +31,7 @@ export function validateZosmfHostAndPort(zosmfHost: string, zosmfPort: number):
common.printError(`Warning: Could not validate if z/OS MF is available on 'https://${zosmfHost}:${zosmfPort}/zosmf/info'. NODE_HOME is not defined.`);
zosmfCheckPassed=false;
} else {
- let execReturn = shell.execOutSync(`${std.getenv('NODE_HOME')}/bin/node`, `${std.getenv('ZWE_zowe_runtimeDirectory')}/bin/utils/curl.js`, `"https://${zosmfHost}:${zosmfPort}/zosmf/info"`, `-k`, `-H`, `"X-CSRF-ZOSMF-HEADER: true"`, `--response-type`, `status`);
+ const execReturn = shell.execOutSync(`${std.getenv('NODE_HOME')}/bin/node`, `${std.getenv('ZWE_zowe_runtimeDirectory')}/bin/utils/curl.js`, `https://${zosmfHost}:${zosmfPort}/zosmf/info`, `-k`, `-H`, `X-CSRF-ZOSMF-HEADER: true`, `--response-type`, `status`);
if (execReturn.rc || !execReturn.out) {
common.printError(`Warning: Could not validate if z/OS MF is available on 'https://${zosmfHost}:${zosmfPort}/zosmf/info'. No response code from z/OSMF server.`);
zosmfCheckPassed=false
diff --git a/example-zowe.yaml b/example-zowe.yaml
index 0a611cf037..1f8a36c801 100644
--- a/example-zowe.yaml
+++ b/example-zowe.yaml
@@ -98,7 +98,7 @@ zowe:
# >>>> Certificate setup scenario 1
# PKCS12 (keystore) with Zowe generate certificates.
certificate:
- # Type of certificate storage. Valid values are: PKCS12, JCEKS, JCECCAKS, JCERACFKS, JCECCARACFKS, or JCEHYBRIDRACFKS
+ # Type of certificate storage. Valid values are: PKCS12, JCERACFKS. APIML additionally supports: JCEKS, JCECCAKS, JCECCARACFKS, or JCEHYBRIDRACFKS
type: PKCS12
pkcs12:
# **COMMONLY_CUSTOMIZED**
@@ -143,7 +143,7 @@ zowe:
# # >>>> Certificate setup scenario 2
# # PKCS12 (keystore) with importing certificate generated by other CA.
# certificate:
- # # Type of certificate storage. Valid values are: PKCS12, JCEKS, JCECCAKS, JCERACFKS, JCECCARACFKS, or JCEHYBRIDRACFKS
+ # # Type of certificate storage. Valid values are: PKCS12, JCERACFKS. APIML additionally supports: JCEKS, JCECCAKS, JCECCARACFKS, or JCEHYBRIDRACFKS
# type: PKCS12
# pkcs12:
# # **COMMONLY_CUSTOMIZED**
@@ -176,9 +176,8 @@ zowe:
# # >>>> Certificate setup scenario 3
# # Zowe generated z/OS Keyring with Zowe generated certificates.
# certificate:
- # # Type of certificate storage. Valid values are: PKCS12, JCEKS, JCECCAKS, JCERACFKS, JCECCARACFKS, or JCEHYBRIDRACFKS
+ # # Type of certificate storage. Valid values are: PKCS12, JCERACFKS. APIML additionally supports: JCEKS, JCECCAKS, JCECCARACFKS, or JCEHYBRIDRACFKS
# type: JCERACFKS
- # createZosmfTrust: true
# keyring:
# # **COMMONLY_CUSTOMIZED**
# # keyring name
@@ -212,7 +211,7 @@ zowe:
# # >>>> Certificate setup scenario 4
# # Zowe generated z/OS Keyring and connect to existing certificate
# certificate:
- # # Type of certificate storage. Valid values are: PKCS12, JCEKS, JCECCAKS, JCERACFKS, JCECCARACFKS, or JCEHYBRIDRACFKS
+ # # Type of certificate storage. Valid values are: PKCS12, JCERACFKS. APIML additionally supports: JCEKS, JCECCAKS, JCECCARACFKS, or JCEHYBRIDRACFKS
# type: JCERACFKS
# keyring:
# # **COMMONLY_CUSTOMIZED**
@@ -236,7 +235,7 @@ zowe:
# # >>>> Certificate setup scenario 5
# # Zowe generated z/OS Keyring with importing certificate stored in data set
# certificate:
- # # Type of certificate storage. Valid values are: PKCS12, JCEKS, JCECCAKS, JCERACFKS, JCECCARACFKS, or JCEHYBRIDRACFKS
+ # # Type of certificate storage. Valid values are: PKCS12, JCERACFKS. APIML additionally supports: JCEKS, JCECCAKS, JCECCARACFKS, or JCEHYBRIDRACFKS
# type: JCERACFKS
# keyring:
# # **COMMONLY_CUSTOMIZED**
diff --git a/files/SZWESAMP/ZWEINSTL b/files/SZWESAMP/ZWEINSTL
index 9d9249c81a..525a794991 100644
--- a/files/SZWESAMP/ZWEINSTL
+++ b/files/SZWESAMP/ZWEINSTL
@@ -36,20 +36,24 @@ blksize(32760) unit(sysallda) space(30,15) tracks
//STDOUT DD SYSOUT=*
//STDERR DD SYSOUT=*
//STDPARM DD *
-SH cd {zowe.runtimeDirectory} &&
-cd files/SZWESAMP &&
+SH cd '{zowe.runtimeDirectory}' &&
+cd 'files/SZWESAMP' &&
cp * "//'{zowe.setup.dataset.prefix}.SZWESAMP'" &&
-cd ../SZWEEXEC &&
+cd '../SZWEEXEC' &&
cp * "//'{zowe.setup.dataset.prefix}.SZWEEXEC'" &&
-cd ../SZWELOAD &&
+cd '../SZWELOAD' &&
cp * "//'{zowe.setup.dataset.prefix}.SZWELOAD'" &&
-cd ../../components/launcher/bin
-cp zowe_launcher "//'{zowe.setup.dataset.prefix}.SZWEAUTH'" &&
-cd ../../zss/SAMPLIB &&
-cp ZWESASTC ZWESIP00 ZWESISTC ZWESISCH
+cd '../../components/launcher/bin' &&
+cp zowe_launcher
+ "//'{zowe.setup.dataset.prefix}.SZWEAUTH(ZWELNCH)'" &&
+cd '../../zss/SAMPLIB' &&
+cp ZWESIP00 ZWESISCH
"//'{zowe.setup.dataset.prefix}.SZWESAMP'" &&
-cd ../LOADLIB &&
+cp ZWESAUX
+ "//'{zowe.setup.dataset.prefix}.SZWESAMP(ZWESASTC)'" &&
+cp ZWESIS01
+ "//'{zowe.setup.dataset.prefix}.SZWESAMP(ZWESISTC)'" &&
+cd '../LOADLIB' &&
cp ZWESIS01 ZWESAUX ZWESISDL
"//'{zowe.setup.dataset.prefix}.SZWEAUTH'"
/*
-
diff --git a/files/SZWESAMP/ZWEITSS b/files/SZWESAMP/ZWEITSS
index 03ed3c0804..512ef8c8f6 100644
--- a/files/SZWESAMP/ZWEITSS
+++ b/files/SZWESAMP/ZWEITSS
@@ -99,7 +99,7 @@
/* userid for ZOWE main server */
TSS LIST({zowe.setup.security.users.zowe}) SEGMENT(OMVS)
- TSS CREATE({zowe.setup.security.users.zowe}) TYPE(USER) PASS(NOPW,0) +
+ TSS CREATE({zowe.setup.security.users.zowe}) TYPE(USER) PROTECTED +
NAME('ZOWE MAIN SERVER') +
DEPT(&STCUDEP.)
TSS ADD({zowe.setup.security.users.zowe}) +
@@ -109,7 +109,7 @@
/* userid for ZIS cross memory server */
TSS LIST({zowe.setup.security.users.zis}) SEGMENT(OMVS)
- TSS CREATE({zowe.setup.security.users.zis}) TYPE(USER) PASS(NOPW,0) +
+ TSS CREATE({zowe.setup.security.users.zis}) TYPE(USER) PROTECTED +
NAME('ZOWE ZIS CROSS MEMORY SERVER') +
DEPT(&STCUDEP.)
TSS ADD({zowe.setup.security.users.zis}) +
diff --git a/manifest.json.template b/manifest.json.template
index 7352b04cde..cec46d2349 100644
--- a/manifest.json.template
+++ b/manifest.json.template
@@ -1,6 +1,6 @@
{
"name": "Zowe",
- "version": "2.17.0",
+ "version": "2.18.0",
"description": "Zowe is an open source project created to host technologies that benefit the Z platform from all members of the Z community (Integrated Software Vendors, System Integrators and z/OS consumers). Zowe, like Mac or Windows, comes with a set of APIs and OS capabilities that applications build on and also includes some applications out of the box. Zowe offers modern interfaces to interact with z/OS and allows you to work with z/OS in a way that is similar to what you experience on cloud platforms today. You can use these interfaces as delivered or through plug-ins and extensions that are created by clients or third-party vendors.",
"license": "EPL-2.0",
"homepage": "https://zowe.org",
@@ -136,7 +136,7 @@
"version": "2.0.3"
},
"org.zowe.licenses": {
- "version": "2.16.0",
+ "version": "2.18.0",
"artifact": "zowe_licenses_full.zip"
}
},
diff --git a/playbooks/host_vars/tvt4188.yml b/playbooks/host_vars/tvt4188.yml
index ce58c19764..d158b19685 100644
--- a/playbooks/host_vars/tvt4188.yml
+++ b/playbooks/host_vars/tvt4188.yml
@@ -1,5 +1,5 @@
---
-ansible_ssh_host: tvt4188.svl.ibm.com
+ansible_ssh_host: tvt4188.pok.stglabs.ibm.com
ansible_user:
ansible_password:
@@ -16,7 +16,7 @@ zowe_smpe_volser: T41882
# caching service volume
zowe_caching_vsam_volume: T41882
-zowe_external_ip_address: 9.30.241.209
+zowe_external_ip_address: 9.47.90.163
zowe_zlux_terminal_telnet_port: 992
zowe_zlux_terminal_telnet_security_type: tls
zowe_apiml_security_x509_enabled: true
diff --git a/schemas/zowe-yaml-schema.json b/schemas/zowe-yaml-schema.json
index 4601706c51..deadae3492 100644
--- a/schemas/zowe-yaml-schema.json
+++ b/schemas/zowe-yaml-schema.json
@@ -804,7 +804,7 @@
"file": {
"type": "string",
"description": "Path of your z/OS keyring, including ring owner and ring name. Case sensitivity and spaces matter.",
- "pattern": "^safkeyring:\/\/.*"
+ "pattern": "^safkeyring[a-z]*:\/\/.*"
},
"password": {
"type": "string",
@@ -831,7 +831,7 @@
"file": {
"type": "string",
"description": "Path of your z/OS keyring, including ring owner and ring name. Case sensitivity and spaces matter.",
- "pattern": "^safkeyring:\/\/.*"
+ "pattern": "^safkeyring[a-z]*:\/\/.*"
},
"password": {
"type": "string",
diff --git a/smpe/bld/service/promoted-apar.txt b/smpe/bld/service/promoted-apar.txt
index f9cd37ddc0..e65ef7390f 100644
--- a/smpe/bld/service/promoted-apar.txt
+++ b/smpe/bld/service/promoted-apar.txt
@@ -1,3 +1,6 @@
+IO29428
+IO29429
+IO29430
IO29424
IO29425
IO29426
diff --git a/smpe/bld/service/promoted-close.txt b/smpe/bld/service/promoted-close.txt
index a2f51e8eaf..b0196523e5 100644
--- a/smpe/bld/service/promoted-close.txt
+++ b/smpe/bld/service/promoted-close.txt
@@ -1,3 +1,48 @@
+ IO29428 -
+ PROBLEM SUMMARY:
+ ****************************************************************
+ * USERS AFFECTED: All Zowe users *
+ ****************************************************************
+ * PROBLEM DESCRIPTION: Update Zowe FMID AZWE002 to match the *
+ * community release *
+ ****************************************************************
+ * RECOMMENDATION: Apply provided service *
+ ****************************************************************
+ The Zowe community version was updated to 2.17.0.
+ This PTF provides the community changes in SMP/E format.
+ Follow this link for more details on the community changes:
+ https://docs.zowe.org/stable/
+
+ IO29429 -
+ PROBLEM SUMMARY:
+ ****************************************************************
+ * USERS AFFECTED: All Zowe users *
+ ****************************************************************
+ * PROBLEM DESCRIPTION: Update Zowe FMID AZWE002 to match the *
+ * community release *
+ ****************************************************************
+ * RECOMMENDATION: Apply provided service *
+ ****************************************************************
+ The Zowe community version was updated to 2.17.0.
+ This PTF provides the community changes in SMP/E format.
+ Follow this link for more details on the community changes:
+ https://docs.zowe.org/stable/
+
+ IO29430 -
+ PROBLEM SUMMARY:
+ ****************************************************************
+ * USERS AFFECTED: All Zowe users *
+ ****************************************************************
+ * PROBLEM DESCRIPTION: Update Zowe FMID AZWE002 to match the *
+ * community release *
+ ****************************************************************
+ * RECOMMENDATION: Apply provided service *
+ ****************************************************************
+ The Zowe community version was updated to 2.17.0.
+ This PTF provides the community changes in SMP/E format.
+ Follow this link for more details on the community changes:
+ https://docs.zowe.org/stable/
+
IO29424 -
PROBLEM SUMMARY:
****************************************************************
diff --git a/smpe/bld/service/promoted-hold.txt b/smpe/bld/service/promoted-hold.txt
index 2930ab1572..e5d2bfc0ca 100644
--- a/smpe/bld/service/promoted-hold.txt
+++ b/smpe/bld/service/promoted-hold.txt
@@ -1,3 +1,28 @@
+++HOLD(UO90059) SYSTEM FMID(AZWE002) REASON(ACTION) DATE(24200)
+ COMMENT(
+ ****************************************************************
+ * Affected function: Zowe servers *
+ ****************************************************************
+ * Description: stop servers *
+ ****************************************************************
+ * Timing: pre-APPLY *
+ ****************************************************************
+ * Part: ZWESLSTC and ZWESISTC *
+ ****************************************************************
+ Stop the Zowe servers before installing this update.
+
+ ****************************************************************
+ * Affected function: Zowe servers *
+ ****************************************************************
+ * Description: start servers *
+ ****************************************************************
+ * Timing: post-APPLY *
+ ****************************************************************
+ * Part: ZWESLSTC and ZWESISTC *
+ ****************************************************************
+ Start the Zowe servers after installing this update.
+
+ ).
++HOLD(UO90057) SYSTEM FMID(AZWE002) REASON(ACTION) DATE(24144)
COMMENT(
****************************************************************
diff --git a/smpe/bld/service/promoted-ptf.txt b/smpe/bld/service/promoted-ptf.txt
index 0e1d192cd2..a3922dcc47 100644
--- a/smpe/bld/service/promoted-ptf.txt
+++ b/smpe/bld/service/promoted-ptf.txt
@@ -1,3 +1,5 @@
+UO90059
+UO90060
UO90057
UO90058
UO90049
diff --git a/smpe/bld/service/ptf-bucket.txt b/smpe/bld/service/ptf-bucket.txt
index 6fda96e640..11868e20ab 100644
--- a/smpe/bld/service/ptf-bucket.txt
+++ b/smpe/bld/service/ptf-bucket.txt
@@ -23,5 +23,5 @@
#UO90047 UO90048 - IO29346 IO29347 IO29348 - Fri Jan 26 17:21:09 UTC 2024
#UO90049 UO90050 - IO29349 IO29350 IO29351 - Fri Mar 8 19:42:44 UTC 2024
#UO90057 UO90058 - IO29424 IO29425 IO29426 - Fri May 24 14:23:02 UTC 2024
-UO90059 UO90060 - IO29428 IO29429 IO29430
+#UO90059 UO90060 - IO29428 IO29429 IO29430 - Thu Jul 18 16:30:14 UTC 2024
UO90061 UO90062 - IO29431 IO29432 IO29433
diff --git a/workflows/files/ZWECONF.xml b/workflows/files/ZWECONF.xml
index 8f4ee7b153..5d725d8adf 100644
--- a/workflows/files/ZWECONF.xml
+++ b/workflows/files/ZWECONF.xml
@@ -101,8 +101,8 @@
- VSAM data set with Record-Level-Sharing enabled or not
- VSAM data set with Record-Level-Sharing enabled or not
+ VSAM data set with Record-Level-Sharing enabled or disabled
+ VSAM data set with Record-Level-Sharing enabled or disabledcomponents
@@ -202,8 +202,8 @@ It is used by ZWESLSTC or by zwe command
- This should be the domain name of your Dynamic VIP Address (DVIPA)
- This should be the domain name of your Dynamic VIP Address (DVIPA)
+ The domain name of your Dynamic VIP Address (DVIPA)
+ The domain name of your Dynamic VIP Address (DVIPA)zowe
@@ -213,7 +213,7 @@ It is used by ZWESLSTC or by zwe command
- This is the port you use to access Zowe Gateway from your web browser
+ The port you use to access Zowe Gateway from your web browserThis is the port you use to access Zowe Gateway from your web browser.
In many use cases, this should be same as <b>components.gateway.port</b>. But in
some use cases, like containerization, this port could be different.
@@ -268,7 +268,7 @@ some use cases, like containerization, this port could be different.
- Zowe certificate keystore file. In case of keyring the format is "safkeyring://OWNER/KEYRING".
+ Zowe certificate keystore file. For keyring, the format is "safkeyring://OWNER/KEYRING".Zowe certificate keystore filecertificates
@@ -317,7 +317,7 @@ some use cases, like containerization, this port could be different.
- File location for the certificate truststore. Keyring is in the format "safkeyring://OWNER/KEYRING".
+ File location for cert truststore. For keyring, the format is "safkeyring://OWNER/KEYRING"File location for the certificate truststorecertificates
@@ -448,9 +448,9 @@ How we want to verify SSL certificates of services. Valid values are:
-
- Should the APIML gateway be enabled?
- Should the APIML gateway be enabled?
+
+ Check this option to enable the gateway
+ Check this option to enable the gatewaycomponents
@@ -460,8 +460,8 @@ How we want to verify SSL certificates of services. Valid values are:
- Port for the APIML gateway
- Port for the APIML gateway
+ Port for the API ML gateway
+ Port for the API ML gatewaycomponents
@@ -515,8 +515,8 @@ How we want to verify SSL certificates of services. Valid values are:
- Use this to enable the security authorization endpoint
- Use this to enable the security authorization endpoint
+ Check to enable the security authorization endpoint
+ Check to enable the security authorization endpointcomponents
@@ -547,8 +547,8 @@ How we want to verify SSL certificates of services. Valid values are:
- Enable gateway server internal connector
- Enable gateway server internal connector
+ Check this option to enable gateway server internal connector
+ Check this option to enable gateway server internal connectorcomponents
@@ -579,9 +579,9 @@ How we want to verify SSL certificates of services. Valid values are:
-
- Use this option to enable the metrics seervice
- Use this option to enable the metrics seervice
+
+ Check this option to enable the Metrics service
+ Check this option to enable the Metrics servicecomponents
@@ -612,9 +612,9 @@ How we want to verify SSL certificates of services. Valid values are:
-
- Use this option to enable the cloud gateway
- Use this option to enable the cloud gateway
+
+ Check this option to enable the Cloud gateway
+ Check this option to enable the Cloud gatewaycomponents
@@ -645,9 +645,9 @@ How we want to verify SSL certificates of services. Valid values are:
-
- Use this option to enable the API catalog
- Use this option to enable the API catalog
+
+ Check this option to enable the API Catalog
+ Check this option to enable the API Catalogcomponents
@@ -657,8 +657,8 @@ How we want to verify SSL certificates of services. Valid values are:
- Port on which the API catalog should be running.
- Port on which the API catalog should be running.
+ Port on which the API Catalog should be running.
+ Port on which the API Catalog should be running.components
@@ -668,8 +668,8 @@ How we want to verify SSL certificates of services. Valid values are:
- Extra debugging information from API catalog.
- Extra debugging information from API catalog.
+ Extra debugging information from API Catalog.
+ Extra debugging information from API Catalog.components
@@ -678,9 +678,9 @@ How we want to verify SSL certificates of services. Valid values are:
-
- Should the automatic discovery be enabled?
- Should the automatic discovery be enabled?
+
+ Check this option to enable the Discovery service
+ Check this option to enable the Discovery servicecomponents
@@ -690,8 +690,8 @@ How we want to verify SSL certificates of services. Valid values are:
- Port on which the discovery service should be running
- Port on which the discovery service should be running
+ Port on which the Discovery service should be running
+ Port on which the Discovery service should be runningcomponents
@@ -701,8 +701,8 @@ How we want to verify SSL certificates of services. Valid values are:
- Should there be extra debugging information?
- Should there be extra debugging information?
+ Check this option to include extra debugging information
+ Check this option to include extra debugging informationcomponents
@@ -711,9 +711,9 @@ How we want to verify SSL certificates of services. Valid values are:
-
- Check to enable the caching service
- Check to enable the caching service
+
+ Check this option to enable the Caching service
+ Check this option to enable the Caching servicecomponents
@@ -745,7 +745,7 @@ How we want to verify SSL certificates of services. Valid values are:
- Specifies the eviction strategy when storage size is achieved.
+ Specifies the eviction strategy when storage size is achievedSpecifies the eviction strategy when storage size is achieved.components
@@ -759,7 +759,7 @@ How we want to verify SSL certificates of services. Valid values are:
Specifies the components caching service storage mode
- Specifies the components caching service storage mode
+ Specifies the components caching service storage mode.components
@@ -774,7 +774,7 @@ How we want to verify SSL certificates of services. Valid values are:
Number of records before the eviction strategies kick in
- Number of records before the eviction strategies kick in
+ Number of records before the eviction strategies kick in.components
@@ -804,9 +804,9 @@ How we want to verify SSL certificates of services. Valid values are:
-
+
Check this option to enable the app server
- Check this option to enable the app server
+ Check this option to enable the app server.components
@@ -817,7 +817,7 @@ How we want to verify SSL certificates of services. Valid values are:
Check to get extra debug information from the service
- Check to get extra debug information from the service
+ Check to get extra debug information from the service.components
@@ -838,8 +838,8 @@ How we want to verify SSL certificates of services. Valid values are:
- Check this option to enable the ZSS component
- Check this option to enable the ZSS component
+ Check this option to enable ZSS
+ Check this option to enable ZSScomponents
@@ -894,7 +894,7 @@ How we want to verify SSL certificates of services. Valid values are:
Check this option to enable the jobs API
- Check this option to enable the jobs API
+ Check this option to enable the jobs API.components
@@ -905,7 +905,7 @@ How we want to verify SSL certificates of services. Valid values are:
Check to get extra debug information from the service
- Check to get extra debug information from the service
+ Check to get extra debug information from the service.components
@@ -927,7 +927,7 @@ How we want to verify SSL certificates of services. Valid values are:
Check this option to enable the files API
- Check this option to enable the files API
+ Check this option to enable the files API.components
@@ -938,7 +938,7 @@ How we want to verify SSL certificates of services. Valid values are:
Check to get extra debug information from the service
- Check to get extra debug information from the service
+ Check to get extra debug information from the service.components
@@ -959,8 +959,8 @@ How we want to verify SSL certificates of services. Valid values are:
- Check this to enable the JES explorer
- Check this to enable the JES explorer
+ Check this option to enable the JES explorer
+ Check this option to enable the JES explorer.components
@@ -970,8 +970,8 @@ How we want to verify SSL certificates of services. Valid values are:
- Check this option to enable MVS explorer
- Check this option to enable MVS explorer
+ Check this option to enable the MVS explorer
+ Check this option to enable the MVS explorer.components
@@ -981,8 +981,8 @@ How we want to verify SSL certificates of services. Valid values are:
- Check this option to enable USS explorer
- Check this option to enable USS explorer
+ Check this option to enable the USS explorer
+ Check this option to enable the USS explorer.components
@@ -992,8 +992,8 @@ How we want to verify SSL certificates of services. Valid values are:
- Should Zowe configuration manager be enabled?
- Should Zowe configuration manager be enabled?
+ Check this option to enable Zowe configuration manager
+ Check this option to enable Zowe configuration manager.configManager
@@ -1147,6 +1147,19 @@ How we want to verify SSL certificates of services. Valid values are:
ZWESASTC
+
+
+ Check to enable this run step with the zwe install command. For convenience build only.
+ Check this option to enable the optional workflow step with zwe install command. After Zowe convenience build is extracted,
+ you can enable this flag to run the zwe install command to install MVS data sets within this workflow run.
+ This option is for convenience build only. SMP/E installs the MVS data sets during installation.
+ installMVSDatasets
+
+
+
+ false
+
+
@@ -1219,6 +1232,7 @@ How we want to verify SSL certificates of services. Valid values are:
+ Run this step to fill base variables.1z/OS System Programmer
@@ -1408,7 +1422,7 @@ How we want to verify SSL certificates of services. Valid values are:
-
+ Run this step to specify the variables for the Caching Service1z/OS System Programmer
@@ -1834,7 +1848,11 @@ echo ' # VSAM configurations if you are using VSAM as Caching Service storage
echo ' vsam:' >> "${instance-zowe_runtimeDirectory}/zowe.yaml"
echo ' # VSAM data set with Record-Level-Sharing enabled or not' >> "${instance-zowe_runtimeDirectory}/zowe.yaml"
echo ' # Valid values could be: NONRLS or RLS.' >> "${instance-zowe_runtimeDirectory}/zowe.yaml"
+#if (${instance-zowe_setup_vsam_mode})
echo ' mode: $!{instance-zowe_setup_vsam_mode}' >> "${instance-zowe_runtimeDirectory}/zowe.yaml"
+#else
+echo ' mode: NONRLS' >> "${instance-zowe_runtimeDirectory}/zowe.yaml"
+#end
echo ' # Volume name if you are using VSAM in NONRLS mode' >> "${instance-zowe_runtimeDirectory}/zowe.yaml"
echo ' volume: "$!{instance-zowe_setup_vsam_volume}"' >> "${instance-zowe_runtimeDirectory}/zowe.yaml"
echo ' # Storage class name if you are using VSAM in RLS mode' >> "${instance-zowe_runtimeDirectory}/zowe.yaml"
@@ -2410,10 +2428,22 @@ echo '# enabled: false' >> "${instance-zowe_runtimeDirectory}/zowe.yaml"
Zowe installationZowe installation
-
- Run the Zowe install
- Configure the Zowe
-
+
+ Run the Zowe install (only for convenience build)
+ Configure Zowe.
+
+
+
+ 1==1
+ Always true
+
+
+ Skips this step if Install the MVS data sets was not selected
+ !${instance-zowe_setup_installStep_enabled}
+ skipped
+
+
+