in reply to Re: Net::OpenSSH premature session termination
in thread Net::OpenSSH premature session termination
Thanks for the reply Salva! Would this be at the SSH session creation time? Or when the threads are reaped? Should the master_exited call be here? As in:
# For Net::OpenSSH need to specify whether to create # pipes or not, default is no pipes. my %opts; $opts{stdin_pipe} = 1; $opts{stdout_pipe} = 1; $opts{stderr_to_stdout} = 1; # Kick off the script on the remote machine ($ssh{'STDIN'}, $ssh{'STDOUT'}, undef, $ssh{'PID'}) = $ssh{'SSH'}->open_ex(\%opts, $script) or die "Error ".$ssh{$host}->error; $ssh{$host}->master_exited()
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Net::OpenSSH premature session termination
by salva (Canon) on Dec 07, 2011 at 14:03 UTC | |
by troy99 (Novice) on Dec 07, 2011 at 14:09 UTC | |
by salva (Canon) on Dec 07, 2011 at 14:49 UTC | |
by troy99 (Novice) on Dec 07, 2011 at 15:29 UTC | |
by salva (Canon) on Dec 07, 2011 at 15:36 UTC |