From 7570adf0cde6877518dfaf98d83b4dfb8a0143b2 Mon Sep 17 00:00:00 2001 From: Ole Tange Date: Wed, 6 Jun 2012 00:14:28 +0200 Subject: [PATCH] parallel: Rolled back SIGINT patches for now. --- src/parallel | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/parallel b/src/parallel index 4f885415..31f4ac1b 100755 --- a/src/parallel +++ b/src/parallel @@ -40,7 +40,6 @@ if(not $ENV{SHELL}) { } %Global::original_sig = %SIG; $SIG{TERM} = sub {}; # Dummy until jobs really start -$SIG{INT} = \&sigint; open $Global::original_stderr, ">&STDERR" or ::die_bug("Can't dup STDERR: $!"); parse_options(); @@ -1750,10 +1749,6 @@ sub timeout { } } -sub sigint { - $Global::start_no_new_jobs = 1; -} - sub __USAGE__ {} @@ -2931,7 +2926,7 @@ sub sshcommand_of_sshlogin { } } } else { - $sshcmd = "ssh -t -t -o LogLevel=quiet"; $serverlogin = $self->{'string'}; + $sshcmd = "ssh"; $serverlogin = $self->{'string'}; } } $self->{'sshcommand'} = $sshcmd;