ssh hangs
authorJason Etheridge <jason@EquinoxInitiative.org>
Wed, 23 Oct 2019 13:08:27 +0000 (09:08 -0400)
committerJason Etheridge <jason@EquinoxInitiative.org>
Wed, 23 Oct 2019 13:08:27 +0000 (09:08 -0400)
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 <jason@EquinoxInitiative.org>
installer/jessie/installer_installer.sh
installer/stretch/installer_installer.sh
installer/wheezy/installer_installer.sh

index c353e8b..b4846c8 100755 (executable)
@@ -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
index 25d9713..d1eb586 100755 (executable)
@@ -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
index 8c6fa84..818c97e 100755 (executable)
@@ -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