Parent Directory | Revision Log | Revision Graph
* Sat Nov 9 2013 Ian Wells <esmith@wellsi.com> 11.1.2-263-2-1.el5.sme - Apply SME patches to 11.1.2.259-1 [SME: 7976] - Update warning about re-formatting attached hard drives [SME: 4788] - Increase fuzz to allow package to build [SME: 7853] - No warnings if kernel not upgraded (recreate initrd if kernel was installed) - No warnings if unable to remove rpm databases - Always pick best arch for package - Allow creating/mounting degraded raid arrays (log info about degraded arrays instead of not starting them) - Start /boot raid device first so it will be in sync for grub install - Automatically upgrade bootloader if necessary - Log install errors but don't bug user about them - Search for language updates on upgrade disk - Force time to be based on UTC - Add final warning before installing - Make install headless but still write keyboard info out (don't ask us to use vnc mode) - Make install window wider (fix titlebar spacing) - Don't email root on raid events - Make boot loader use SME labels - Determine upgradability of SME server (change erase disks to upgrade dialog) - Run SME post-install scripts on kickstart install/upgrade - Limit languages to those supported by SME
1 | slords | 1.5 | From 574059148f933064f777ee82431d662371334500 Mon Sep 17 00:00:00 2001 |
2 | slords | 1.1 | From: Shad L. Lords <slords@mail.com> |
3 | Date: Mon, 19 Oct 2009 08:32:44 -0600 | ||
4 | slords | 1.5 | Subject: [PATCH 10/17] Add final warning before installing |
5 | slords | 1.1 | |
6 | --- | ||
7 | textw/confirm_text.py | 7 +++++++ | ||
8 | 1 files changed, 7 insertions(+), 0 deletions(-) | ||
9 | |||
10 | diff --git a/textw/confirm_text.py b/textw/confirm_text.py | ||
11 | index 2bb7f3d..814b231 100644 | ||
12 | --- a/textw/confirm_text.py | ||
13 | +++ b/textw/confirm_text.py | ||
14 | @@ -19,6 +19,13 @@ from image import presentRequiredMediaMessage | ||
15 | |||
16 | class BeginInstallWindow: | ||
17 | def __call__ (self, screen, anaconda): | ||
18 | + rc = anaconda.intf.messageWindow(_("Warning"), | ||
19 | + _("All disks will be reformatted and any data will be lost. Proceed?"), | ||
20 | + type = "yesno", default = "no") | ||
21 | + | ||
22 | + if rc == 0: | ||
23 | + return INSTALL_BACK | ||
24 | + | ||
25 | rc = ButtonChoiceWindow (screen, _("Installation to begin"), | ||
26 | _("A complete log of your installation will be in " | ||
27 | "%s after rebooting your system. You " | ||
28 | -- | ||
29 | slords | 1.7 | 1.7.1 |
30 | slords | 1.1 |
admin@koozali.org | ViewVC Help |
Powered by ViewVC 1.2.1 |