From 76edfcf6707bb5af131b608ef4f1a7f90d0d83af Mon Sep 17 00:00:00 2001 From: lissav Date: Wed, 18 Sep 2013 13:41:16 -0400 Subject: [PATCH] defect 3785 --- xCAT-server/lib/xcat/plugins/updatenode.pm | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/updatenode.pm b/xCAT-server/lib/xcat/plugins/updatenode.pm index 02890728f..45d198ffa 100644 --- a/xCAT-server/lib/xcat/plugins/updatenode.pm +++ b/xCAT-server/lib/xcat/plugins/updatenode.pm @@ -1375,7 +1375,12 @@ sub updatenoderunps $subreq, 0, 1 ); } - + # report final status PCM + if ((defined($request->{status})) && ($request->{status} eq "yes")) { + my $rsp = {}; + $rsp->{status}->[0] = "Running of postscripts has completed."; + $callback->($rsp); + } return; } @@ -1764,6 +1769,12 @@ sub updatenodesoftware return 1; } } + # report final status PCM + if ((defined($request->{status})) && ($request->{status} eq "yes")) { + my $rsp = {}; + $rsp->{status}->[0] = "Running of Software maintenance has completed."; + $callback->($rsp); + } return; }