diff --git a/bin/commands/support/.help b/bin/commands/support/.help index 0f9ef64565..07bfab5e29 100644 --- a/bin/commands/support/.help +++ b/bin/commands/support/.help @@ -6,6 +6,7 @@ This command will collect these information: * z/OS version * Java version * Node.js version + * External Security Manager - Zowe configurations * Zowe manifest.json * Zowe configuration file diff --git a/bin/commands/support/index.sh b/bin/commands/support/index.sh index be3ab8c68e..970cde1523 100644 --- a/bin/commands/support/index.sh +++ b/bin/commands/support/index.sh @@ -43,7 +43,7 @@ print_debug "Temporary directory created: ${tmp_dir}" print_message ############################### -print_level1_message "Collecting version of z/OS, Java, NodeJS" +print_level1_message "Collecting information about z/OS, Java, NodeJS and ESM" VERSION_FILE="${tmp_dir}/version_output" ZOS_VERSION=`operator_command "D IPLINFO" | grep -i release | xargs` print_message "- z/OS: ${ZOS_VERSION}" @@ -51,9 +51,12 @@ JAVA_VERSION=`${JAVA_HOME}/bin/java -version 2>&1 | head -n 1` print_message "- Java: ${JAVA_VERSION}" NODE_VERSION=`${NODE_HOME}/bin/node --version` print_message "- NodeJS: ${NODE_VERSION}" +ESM=`"${ZWE_zowe_runtimeDirectory}/bin/utils/getesm"` +print_message "- External Security Manager: ${ESM}" echo "z/OS version: ${ZOS_VERSION}" > "${VERSION_FILE}" echo "Java version: ${JAVA_VERSION}" >> "${VERSION_FILE}" echo "NodeJS version: ${NODE_VERSION}" >> "${VERSION_FILE}" +echo "External Security Manager: ${ESM}" >> "${VERSION_FILE}" print_message ###############################