From 58d096524941ff8dad362f46959eb33bf0fb14ad Mon Sep 17 00:00:00 2001 From: lissav Date: Thu, 27 Jun 2013 14:03:26 +0000 Subject: [PATCH] fix defect 3461 git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@16807 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/updatenode.pm | 33 ++++------------------ 1 file changed, 6 insertions(+), 27 deletions(-) diff --git a/xCAT-server/lib/xcat/plugins/updatenode.pm b/xCAT-server/lib/xcat/plugins/updatenode.pm index ac43c7b0a..7295b26b7 100644 --- a/xCAT-server/lib/xcat/plugins/updatenode.pm +++ b/xCAT-server/lib/xcat/plugins/updatenode.pm @@ -493,15 +493,11 @@ sub preprocess_updatenode # hierarchical scenario inside if ($::FILESYNC) { - my $reqcopy = {%$request}; - $reqcopy->{FileSyncing}->[0] = "yes"; - push @requests, $reqcopy; + $request->{FileSyncing}->[0] = "yes"; } if ($::SNFILESYNC) # either sync service node { - my $reqcopy = {%$request}; - $reqcopy->{SNFileSyncing}->[0] = "yes"; - push @requests, $reqcopy; + $request->{SNFileSyncing}->[0] = "yes"; } # If -F or -f then, call CFMUtils to check if any PCM CFM data is to be @@ -529,10 +525,12 @@ sub preprocess_updatenode } } - # if not -S or -P or --security + # if not -S or -P or --security, only -F which is always run on the MN unless (defined($::SWMAINTENANCE) || defined($::RERUNPS) || $::SECURITY) { - return \@requests; + $request->{_xcatpreprocessed}->[0] = 1; + &updatenode($request, $callback, $subreq); + return; } # - need to consider the mixed cluster case @@ -588,18 +586,6 @@ sub preprocess_updatenode } -# my @sns = (); -# foreach my $s (keys %$sn) -# { -# my @tmp_a = split(',', $s); -# foreach my $s1 (@tmp_a) -# { -# if (!grep (/^$s1$/, @MNip)) -# { -# push @sns, $s1; -# } -# } -# } if (defined($::SWMAINTENANCE)) { $request->{swmaintenance}->[0] = "yes"; @@ -1179,13 +1165,6 @@ sub updatenode $callback->($rsp); } - my $numberofgoodnodes = 0; - my $numberofbadnodes = 0; - $numberofgoodnodes = @::SUCCESSFULLNODES; - $numberofbadnodes = @::FAILEDNODES; - my $rsp = {}; - $rsp->{status}->[0] = "TOTAL NODES: $numberofnodes, SUCCEEDED: $numberofgoodnodes, FAILED: $numberofbadnodes"; - $callback->($rsp); } # if site.precreatemypostscripts = not 1 or yes or undefined,