fix call to setupSSH to input node list not noderange

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@1481 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
lissav 2008-05-22 16:15:12 +00:00
parent 0e89580dd4
commit 0863a2b674

View File

@ -3701,7 +3701,7 @@ sub parse_and_run_dsh
# -K option just sets up the ssh keys on the nodes and exits
if (defined $options{'ssh-setup'})
{
my $rc = xCAT::Utils->setupSSH($noderange);
my $rc = xCAT::Utils->setupSSH(@nodelist);
my @results = "return code = $rc";
return (@results);
}