/usr/share/perl5/Net/OpenSSH/ObjectRemote.pm is in libnet-openssh-perl 0.70-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | package Net::OpenSSH::ObjectRemote;
use strict;
use warnings;
use Moo;
with 'Object::Remote::Role::Connector::PerlInterpreter';
has net_openssh => (is => 'ro', required => 1);
sub final_perl_command {
my $self = shift;
my $perl_command = $self->perl_command;
[ $self->net_openssh->make_remote_command(@$perl_command) ];
}
1;
|