remove check for no parms to makeconservercf, this should not be an error

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@3099 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
lissav 2009-04-06 15:05:18 +00:00
parent f8e2f28e3a
commit 462396dd89

View File

@ -74,17 +74,12 @@ sub preprocess_request {
}
if ($::LOCAL) {
if ($noderange && @$noderange>0) {
$callback->({data=>"Invalide option -l or --local when there are nodes specified."});
$callback->({data=>"Invalid option -l or --local when there are nodes specified."});
$request = {};
return;
}
}
#if(exists($ARGV[0])){
# $callback->({data=>"Invalide option $ARGV[0] specified."});
# $request = {};
# return;
#}
# get site master
my $master=xCAT::Utils->get_site_Master();