From: Jason Etheridge Date: Wed, 23 Oct 2019 13:08:27 +0000 (-0400) Subject: ssh hangs X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=7b4a12c8ef72482ee0b7a749bdb852b9cfc2ba3a;p=working%2Frandom.git ssh hangs In test.sh, this has started to hang and not exit wihen installer_installer.sh has finished: ssh $TARGET_USER@$TARGET_HOST $TARGET_PATH/installer_installer.sh 2>&1 | tee output.txt I doubt exit 0; will help, but trying it out. Signed-off-by: Jason Etheridge --- diff --git a/installer/jessie/installer_installer.sh b/installer/jessie/installer_installer.sh index c353e8b4b..b4846c8c8 100755 --- a/installer/jessie/installer_installer.sh +++ b/installer/jessie/installer_installer.sh @@ -5,3 +5,4 @@ cd random/ git checkout -b wheezy origin/collab/phasefx/wheezy_installer cd installer/jessie time sudo ./eg_jessie_installer.sh -y -a -s -t +exit 0 diff --git a/installer/stretch/installer_installer.sh b/installer/stretch/installer_installer.sh index 25d97133d..d1eb58648 100755 --- a/installer/stretch/installer_installer.sh +++ b/installer/stretch/installer_installer.sh @@ -7,3 +7,4 @@ cd random/ git checkout -b eg_live_tests origin/collab/phasefx/eg_live_tests cd installer/stretch time sudo ./eg_stretch_installer.sh -y -a -s -t +exit 0 diff --git a/installer/wheezy/installer_installer.sh b/installer/wheezy/installer_installer.sh index 8c6fa84cc..818c97e86 100755 --- a/installer/wheezy/installer_installer.sh +++ b/installer/wheezy/installer_installer.sh @@ -7,3 +7,4 @@ cd random/ git checkout -b wheezy origin/collab/phasefx/wheezy_installer cd installer/wheezy time sudo ./eg_wheezy_installer.sh -y -a -s -t +exit 0