Start ssh with -f instead of -n to avoid ssh hangs.

This seems to resolve #833.
This commit is contained in:
John Hood
2016-12-01 19:37:05 -05:00
parent 278fd12ec1
commit f002e3bb30
+1 -1
View File
@@ -346,7 +346,7 @@ die "$0: fork: $!\n" unless ( defined $pid );
if ( $pid == 0 ) { # child
open(STDERR, ">&STDOUT") or die;
my @sshopts = ( '-n' );
my @sshopts = ( '-f' );
if ($ssh_pty) {
push @sshopts, '-tt';
}