Yedidyah Bar David has uploaded a new change for review. Change subject: packaging: setup: Add an uninstall file at closeup ......................................................................
packaging: setup: Add an uninstall file at closeup An uninstall file was added at otopi's stage cleanup, which is ran always, even on error/abort/etc. This change does this at stage closeup, which is ran only on no-error. Change-Id: I44e87a41ec6f7b9f395a78b5dbc7f9ac3c8350f5 Signed-off-by: Yedidyah Bar David <[email protected]> --- M packaging/setup/plugins/ovirt-engine-common/core/uninstall.py 1 file changed, 2 insertions(+), 2 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/93/17493/1 diff --git a/packaging/setup/plugins/ovirt-engine-common/core/uninstall.py b/packaging/setup/plugins/ovirt-engine-common/core/uninstall.py index 3e9b00a..7faba8f 100644 --- a/packaging/setup/plugins/ovirt-engine-common/core/uninstall.py +++ b/packaging/setup/plugins/ovirt-engine-common/core/uninstall.py @@ -101,10 +101,10 @@ ] = RegisterGroups(self.environment) @plugin.event( - stage=plugin.Stages.STAGE_CLEANUP, + stage=plugin.Stages.STAGE_CLOSEUP, priority=plugin.Stages.PRIORITY_LOW, ) - def _cleanup(self): + def _closeup(self): config = configparser.ConfigParser() config.optionxform = str -- To view, visit http://gerrit.ovirt.org/17493 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I44e87a41ec6f7b9f395a78b5dbc7f9ac3c8350f5 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Yedidyah Bar David <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
