change www_shellcommands to use Net::OpenSSH, RT8115
authorlevinse <levinse>
Fri, 21 Jan 2011 05:55:45 +0000 (05:55 +0000)
committerlevinse <levinse>
Fri, 21 Jan 2011 05:55:45 +0000 (05:55 +0000)
FS/FS/part_export/www_shellcommands.pm

index 91b294e..d6116ab 100644 (file)
@@ -177,14 +177,14 @@ sub shellcommands_queue {
 }
 
 sub ssh_cmd { #subroutine, not method
-  use Net::SSH '0.08';
-  &Net::SSH::ssh_cmd( { @_ } );
+  use Net::OpenSSH;
+  my $opt = { @_ };
+  my $ssh = Net::OpenSSH->new($opt->{'user'}.'@'.$opt->{'host'});
+  die "Couldn't establish SSH connection: ". $ssh->error if $ssh->error;
+  my ($output, $errput) = $ssh->capture2($opt->{'command'});
+  die "Error running SSH command: ". $ssh->error if $ssh->error;
+  die $errput if $errput;
+  die $output if $output;
+  '';
 }
 
-#sub shellcommands_insert { #subroutine, not method
-#}
-#sub shellcommands_replace { #subroutine, not method
-#}
-#sub shellcommands_delete { #subroutine, not method
-#}
-