defect 3785

This commit is contained in:
lissav 2013-09-18 13:41:16 -04:00
parent 5d02531baa
commit 76edfcf670

View File

@ -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;
}