From 54d8d771597cfc4881c47c00a677402b4871c9a2 Mon Sep 17 00:00:00 2001 From: jjhua Date: Thu, 18 Aug 2011 02:49:25 +0000 Subject: [PATCH] fixed 3393278, if noderange is not empty and missed not is empty, at the meantime, the @nodes is also empty, we can make sure that no node/noderange specified in the command line git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@10316 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/Client.pm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/perl-xCAT/xCAT/Client.pm b/perl-xCAT/xCAT/Client.pm index 942ae4f58..21bba8416 100644 --- a/perl-xCAT/xCAT/Client.pm +++ b/perl-xCAT/xCAT/Client.pm @@ -319,6 +319,11 @@ sub plugin_command { unless (@nodes) { $req->{emptynoderange} = [1]; } + + if(@nodes == 0 ) { + print "No nodes or noderanges specified\n"; + return 1; + } } if (@nodes) { $req->{node} = \@nodes; } my %unhandled_nodes;