diff --git a/xCAT-server-2.0/lib/xcat/plugins/conserver.pm b/xCAT-server-2.0/lib/xcat/plugins/conserver.pm index 88f3d06bd..ae1e18a79 100644 --- a/xCAT-server-2.0/lib/xcat/plugins/conserver.pm +++ b/xCAT-server-2.0/lib/xcat/plugins/conserver.pm @@ -218,7 +218,7 @@ sub makeconservercf { # skip the one that does not have 'cons' defined, unless a serialport setting suggests otherwise my @cfgents=(); foreach (@cfgents1) { - if ($_->{cons} or defined($_->{'serialport'}) { push @cfgents, $_; } + if ($_->{cons} or defined($_->{'serialport'})) { push @cfgents, $_; } } # get the teminal servers and terminal port when cons is mrv or cyclades diff --git a/xCAT-server-2.0/sbin/xcatd b/xCAT-server-2.0/sbin/xcatd index 3b719a530..1d1675d6f 100755 --- a/xCAT-server-2.0/sbin/xcatd +++ b/xCAT-server-2.0/sbin/xcatd @@ -556,6 +556,7 @@ sub plugin_command { @nodes = noderange($req->{noderange}->[0]); if (nodesmissed) { my $rsp = {errorcode=>1,error=>"Invalid nodes in noderange:".join(',',nodesmissed)}; + $rsp->{serverdone} = {}; if ($sock) { print $sock XMLout($rsp,RootName=>'xcatresponse' ,NoAttr=>1); }