ashok.g has asked for the wisdom of the Perl Monks concerning the following question:
sub SSH_Reference { my ($rip,$rusr) = @_; chomp($rip,$rusr); my $ssh = Net::SSH::Expect->new( host => $rip, user => $rusr, timeout => 15, raw_pty => 1 ); eval{ $ssh->run_ssh(); };
When I print $@ it is saying that /var/www/.ssh canno't be created.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Net::SSH::Expect login using SSH keys
by moritz (Cardinal) on Dec 07, 2010 at 12:48 UTC | |
|
Re: Net::SSH::Expect login using SSH keys
by perl_lover (Chaplain) on Dec 07, 2010 at 12:49 UTC | |
by ashok.g (Beadle) on Dec 07, 2010 at 13:03 UTC | |
by perl_lover (Chaplain) on Dec 07, 2010 at 13:44 UTC | |
by cjb (Friar) on Dec 07, 2010 at 13:33 UTC | |
by ashok.g (Beadle) on Dec 07, 2010 at 13:46 UTC | |
by cjb (Friar) on Dec 07, 2010 at 13:58 UTC | |
|