1 |
diff -ruN anaconda-13.21.215.old/textw/upgrade_text.py anaconda-13.21.215/textw/upgrade_text.py |
2 |
--- anaconda-13.21.215.old/textw/upgrade_text.py 2014-02-20 12:46:48.000000000 -0800 |
3 |
+++ anaconda-13.21.215/textw/upgrade_text.py 2014-02-22 14:39:34.000000000 -0800 |
4 |
@@ -233,7 +233,7 @@ |
5 |
else: |
6 |
scroll = 0 |
7 |
partList = [] |
8 |
- partList.append(_("Reinstall System")) |
9 |
+ partList.append(_("Erase ALL disks, and perform a fresh install")) |
10 |
|
11 |
default = 1 |
12 |
|
13 |
@@ -254,6 +254,17 @@ |
14 |
header = _("Wrong SME server version") |
15 |
reason = _("Your system is not upgradeable using this version of SME server. The currently installed system is a %s bit version, but this version of SME server is a %s bit version.") % (arch, cur_arch) |
16 |
|
17 |
+ if sys_is_not_upgradeable: |
18 |
+ partList.append(_("Reboot system")) |
19 |
+ (button, choice) = ListboxChoiceWindow(screen, header, |
20 |
+ reason, partList, |
21 |
+ [ TEXT_OK_BUTTON, |
22 |
+ TEXT_BACK_BUTTON ], |
23 |
+ width = 55, scroll = scroll, |
24 |
+ height = height, |
25 |
+ help = "upgraderoot", |
26 |
+ default = 1) |
27 |
+ |
28 |
if button == TEXT_BACK_CHECK: |
29 |
return INSTALL_BACK |
30 |
else: |