2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-06-21 05:25:32 +00:00

Remove trailing spaces in file perl-xCAT/xCAT/SSH.pm

This commit is contained in:
GONG Jie
2017-12-31 23:59:59 +00:00
parent 8e7362a03f
commit 5f7334d9bc

View File

@ -36,14 +36,14 @@ our $ssh_version = xCAT::SSH->validate_ssh_version;
Returns:
A command array for the ssh command with the appropriate
arguments as defined in the $config hash table
Globals:
$ssh_version
$SSH_CMD
Error:
None
Example:
xCAT::SSH->remote_shell_command($config_hash, '/usr/bin/ssh');
@ -99,14 +99,14 @@ sub remote_shell_command {
Returns:
A command array for the scp command with the appropriate
arguments as defined in the $config hash table
Globals:
$ssh_version
$SCP_CMD
Error:
None
Example:
xCAT::SSH->remote_copy_command($config_hash, '/usr/bin/scp');
@ -147,7 +147,7 @@ sub remote_copy_command {
{
$scpfile = "/tmp/scp_$$config{'dest-host'}";
}
open SCPCMDFILE, "> $scpfile"
or die "Can not open file $scpfile";
if ($$config{'dest-user'})
@ -183,7 +183,7 @@ sub remote_copy_command {
"$exec_path -p -r $src_file_diff_dest $dest_user_host:$dest_dir/$diff_basename\n";
}
}
}
}
close SCPCMDFILE;
chmod 0755, $scpfile;
@ -231,13 +231,13 @@ sub remote_copy_command {
Returns:
The string 'OpenSSH' if OpenSSH is used
undef otherwise
Globals:
$SSH_CMD
Error:
None
Example:
$ssh_version = xCAT::SSH->validate_ssh_version;