From ce1feaf84306e69a93328eb38f5c11830e84cc16 Mon Sep 17 00:00:00 2001 From: lissav Date: Mon, 31 Mar 2008 18:09:17 +0000 Subject: [PATCH] Fix handling of node resolution git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@951 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT-2.0/xCAT/DSHCLI.pm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/perl-xCAT-2.0/xCAT/DSHCLI.pm b/perl-xCAT-2.0/xCAT/DSHCLI.pm index fc0f2411f..af1c02a58 100644 --- a/perl-xCAT-2.0/xCAT/DSHCLI.pm +++ b/perl-xCAT-2.0/xCAT/DSHCLI.pm @@ -2876,10 +2876,9 @@ sub resolve_nodes my ($class, $options, $resolved_targets, $unresolved_targets, $context_targets) = @_; - + my @node_list = (); - - my @node_list = $$options{'nodes'}; + @node_list = split ',' , $$options{'nodes'}; foreach $context_node (@node_list) {