Alon Bar-Lev has uploaded a new change for review. Change subject: core: add more phases late setup and early misc ......................................................................
core: add more phases late setup and early misc Change-Id: I191bae22d052ce5823ddfc0b64197647b5fae834 Signed-off-by: Alon Bar-Lev <[email protected]> --- M README.API M src/otopi/plugin.py 2 files changed, 9 insertions(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/otopi refs/changes/11/15111/1 diff --git a/README.API b/README.API index cb74ee5..2b0b532 100644 --- a/README.API +++ b/README.API @@ -73,6 +73,9 @@ Install local packages required for setup. No rollback for these packages. +STAGE_LATE_SETUP + Late setup actions. + STAGE_CUSTOMIZATION Customization phase for dialog, avoid. @@ -83,6 +86,9 @@ Transaction begins here, you can add elements before, at this point these will be prepared. +STAGE_EARLY_MISC + Early misc actions. + STAGE_PACKAGES Package installation. diff --git a/src/otopi/plugin.py b/src/otopi/plugin.py index 4eee8e4..8b232f6 100644 --- a/src/otopi/plugin.py +++ b/src/otopi/plugin.py @@ -49,9 +49,11 @@ STAGE_SETUP, STAGE_INTERNAL_PACKAGES, STAGE_PROGRAMS, + STAGE_LATE_SETUP, STAGE_CUSTOMIZATION, STAGE_VALIDATION, STAGE_TRANSACTION_BEGIN, + STAGE_EARLY_MISC, STAGE_PACKAGES, STAGE_MISC, STAGE_TRANSACTION_END, @@ -60,7 +62,7 @@ STAGE_PRE_TERMINATE, STAGE_TERMINATE, STAGE_REBOOT, - ) = range(16) + ) = range(18) DATABASE = { STAGE_BOOT: { -- To view, visit http://gerrit.ovirt.org/15111 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I191bae22d052ce5823ddfc0b64197647b5fae834 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
