http://www.perlmonks.org?node_id=969534


in reply to -q option in Net::OpenSSH

You can use master_opts to pass options to the master SSH connection or just master_stderr_discard to get its output redirected to /dev/null.

Replies are listed 'Best First'.
Re^2: -q option in Net::OpenSSH
by web (Initiate) on May 23, 2012 at 17:15 UTC
    Thanks! This was the solution. I used the %opts has on my call to new() and included master_stderr_discard => 1, inside that hash which I was already using for "user" and "password". Thanks again. You Monks rock! *grin*
      Is there a way to combine
      master_opts => [-o => "StrictHostKeyChecking=no", ], master_stderr_dis +card => 1
      in one %opts ? Thanks.
        got it to work with:
        my %opts = (master_opts => [-o => "StrictHostKeyChecking=no"],master_s +tderr_discard => 1);