The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Net::SSH::Any::Backend::Net_OpenSSH

DESCRIPTION

Custom options supported by this backend:

instance => $instance

Instead of creating a new Net::OpenSSH reuses the one given.

Example:

my $ssh = Net::OpenSSH->new($target, ...);

my $assh = Net::SSH::Any->new($target,
                              backend => 'Net_OpenSSH',
                              backend_opts => {
                                  Net_OpenSSH => { instance => $ssh }
                              } );
master_opts => \@master_opts

...