in reply to Net::OpenSSh failed with mux socket permissions in make test

my $muxs = $ssh->get_ctl_path; ok(-S $muxs, "mux socket exists"); is((stat $muxs)[2] & 0777, 0600, "mux socket permissions"); # line 92

Have you worked through the troubleshooting section of Net::OpenSSH? Chances are you're hitting this permissions problem for good reason.

Update: 448 in base 8 is 700. Speak to your systems administrator if in doubt

Replies are listed 'Best First'.
Re^2: Net::OpenSSh failed with mux socket permissions in make test
by salva (Canon) on Mar 11, 2013 at 11:25 UTC
    The 700 is probably caused by some of the patches applied to OpenSSH by HP or some HP-UX deviation from the common practice of creating sockets with permissions 666 & ~umask.