Skip to content
This repository has been archived by the owner on Apr 23, 2020. It is now read-only.

Updates to match script changes #174

Open
wants to merge 1 commit into
base: staging
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions scripts/install-zowe.sh
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ echo "calling zowe-install-proc.sh with"
echo " ZOWE_DSN_PREFIX=${DATA_SET_PREFIX}"
echo " ZOWE_SERVER_PROCLIB_DSNAME=$CIZT_PROCLIB_DS"
cd $CIZT_ZOWE_ROOT_DIR/scripts/utils
RUN_SCRIPT="./zowe-install-proc.sh ${DATA_SET_PREFIX} $CIZT_PROCLIB_DS"
RUN_SCRIPT="./zowe-install-proc.sh -d ${DATA_SET_PREFIX} -r $CIZT_PROCLIB_DS"
run_script_with_timeout "$RUN_SCRIPT" 3600
EXIT_CODE=$?
if [[ "$EXIT_CODE" != "0" ]]; then
Expand All @@ -461,10 +461,10 @@ echo " zss proclib ${CIZT_ZSS_PROCLIB_DS_NAME}"
RUN_SCRIPT=./zowe-install-xmem.sh
echo "[${SCRIPT_NAME}] calling $RUN_SCRIPT from directory $(pwd)"
run_script_with_timeout "$RUN_SCRIPT \
${DATA_SET_PREFIX} \
${CIZT_ZSS_LOADLIB_DS_NAME} \
${CIZT_ZSS_PARMLIB_DS_NAME} \
${CIZT_ZSS_PROCLIB_DS_NAME}" 1800
-d ${DATA_SET_PREFIX} \
-b ${CIZT_ZSS_LOADLIB_DS_NAME} \
-a ${CIZT_ZSS_PARMLIB_DS_NAME} \
-r ${CIZT_ZSS_PROCLIB_DS_NAME}" 1800
EXIT_CODE=$?
if [[ "$EXIT_CODE" != "0" ]]; then
echo "[${SCRIPT_NAME}][error] ${RUN_SCRIPT} failed."
Expand Down