Alon Bar-Lev has uploaded a new change for review. Change subject: core: add late setup and early misc to database ......................................................................
core: add late setup and early misc to database Change-Id: I487c92e48133bef63c83e12850f528b6007f79aa Signed-off-by: Alon Bar-Lev <[email protected]> Reported-By: Yedidyah Bar David <[email protected]> --- M src/otopi/plugin.py 1 file changed, 16 insertions(+), 0 deletions(-) git pull ssh://gerrit.ovirt.org:29418/otopi refs/changes/91/15891/1 diff --git a/src/otopi/plugin.py b/src/otopi/plugin.py index 8b232f6..ec1e7da 100644 --- a/src/otopi/plugin.py +++ b/src/otopi/plugin.py @@ -110,6 +110,14 @@ 'description': _("Programs detection"), 'if-success': True, }, + STAGE_LATE_SETUP: { + # + # Late setup actions. + # + 'id': 'late_setup', + 'description': _("Installation setup"), + 'if-success': True, + }, STAGE_CUSTOMIZATION: { # # Customization phase for dialog, avoid. @@ -135,6 +143,14 @@ 'description': _("Transaction setup"), 'if-success': True, }, + STAGE_EARLY_MISC: { + # + # Misc actions before package update. + # + 'id': 'early_misc', + 'description': _("Misc configuration"), + 'if-success': True, + }, STAGE_PACKAGES: { # # Package installation. -- To view, visit http://gerrit.ovirt.org/15891 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I487c92e48133bef63c83e12850f528b6007f79aa Gerrit-PatchSet: 1 Gerrit-Project: otopi Gerrit-Branch: master Gerrit-Owner: Alon Bar-Lev <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
