in reply to SSH Keyer for passwordless logins.

use Net::OpenSSH; my $ssh = Net::OpenSSH->new($hostname, user => $username, password => +$password); $ssh->error and die "unable to connect: " . $ssh->error; $ssh->rsync_put(@local_files, $remote_dir);

Replies are listed 'Best First'.
Re^2: SSH Keyer for passwordless logins.
by Sir mXe (Acolyte) on May 26, 2011 at 21:07 UTC

    Thanks for sharing that, I evidently didn't even look into the possibility of Net::OpenSSH. Mostly because I had never actually seen it before. I'll be sure to check it more, see if it'll work for what's going on.