search for: quit_button

Displaying 2 results from an estimated 2 matches for "quit_button".

Did you mean: guid_button
2011 Jul 20
0
[PATCH] change restart button label to reboot
...if self.__current_page == FINISHED_PAGE: - buttons.append(["Restart", RESTART_BUTTON]) + buttons.append(["Reboot", REBOOT_BUTTON]) if self.__current_page != FINISHED_PAGE: buttons.append(["Quit", QUIT_BUTTON]) if self.__current_page != WELCOME_PAGE and self.__current_page != FAILED_PAGE and self.__current_page != FINISHED_PAGE: @@ -712,7 +712,7 @@ class NodeInstallScreen: if self.__current_page == PASSWORD_PAGE: buttons.append(["Install", INSTALL_BUT...
2011 Aug 05
1
[PATCH 1/2] update comparison for presenting dowgrade/upgrade/install/reinstall options
...s(+), 8 deletions(-) diff --git a/scripts/ovirt-config-installer.py b/scripts/ovirt-config-installer.py index ff2ccc8..cacce5e 100644 --- a/scripts/ovirt-config-installer.py +++ b/scripts/ovirt-config-installer.py @@ -29,6 +29,7 @@ import dbus import fcntl import gudev import PAM +import rpm QUIT_BUTTON = "Quit" BACK_BUTTON = "Back" @@ -299,17 +300,16 @@ class NodeInstallScreen: try: e_version, e_release = get_installed_version_number() e_full_ver = e_version + "-" + e_release -...