Skip to content

Commit

Permalink
Merge pull request zowe#191 from zowe/feature/z_check
Browse files Browse the repository at this point in the history
Do not attempt to start ZSS if not on z/OS
  • Loading branch information
1000TurquoisePogs committed Jun 30, 2020
2 parents 26d6c12 + a10d368 commit e7bd47e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions bin/start.sh
Expand Up @@ -21,5 +21,10 @@
# - ZOWE_ZLUX_TELNET_PORT
# - ZOWE_ZLUX_SECURITY_TYPE

cd ${ROOT_DIR}/components/zss/bin
./zssServer.sh
OSNAME=$(uname)
if [[ "${OSNAME}" == "OS/390" ]]; then
cd ${ROOT_DIR}/components/zss/bin
./zssServer.sh
else
echo "Zowe ZSS server is unsupported on ${OSNAME}. Supported systems: OS/390"
fi

0 comments on commit e7bd47e

Please sign in to comment.