in reply to Re^2: -q option in Net::OpenSSH
in thread -q option in Net::OpenSSH

Is there a way to combine
master_opts => [-o => "StrictHostKeyChecking=no", ], master_stderr_dis +card => 1
in one %opts ? Thanks.

Replies are listed 'Best First'.
Re^4: -q option in Net::OpenSSH
by Anonymous Monk on Jul 10, 2014 at 13:59 UTC
    got it to work with:
    my %opts = (master_opts => [-o => "StrictHostKeyChecking=no"],master_s +tderr_discard => 1);