1 |
diff -Nur -x '*.orig' -x '*.rej' anaconda-10.1.1.37/packages.py mezzanine_patched_anaconda-10.1.1.37/packages.py |
2 |
--- anaconda-10.1.1.37/packages.py 2006-04-06 05:58:42.557730846 +1000 |
3 |
+++ mezzanine_patched_anaconda-10.1.1.37/packages.py 2006-04-06 05:58:21.338434100 +1000 |
4 |
@@ -1151,15 +1151,16 @@ |
5 |
if flags.test: |
6 |
return |
7 |
|
8 |
- w = intf.progressWindow(_("Post Install"), |
9 |
- _("Performing post install configuration..."), 6) |
10 |
- |
11 |
upgrade = id.upgrade.get() |
12 |
arch = iutil.getArch () |
13 |
|
14 |
if upgrade: |
15 |
+ w = intf.progressWindow(_("Post Upgrade"), |
16 |
+ _("Performing post upgrade configuration..."), 6) |
17 |
logname = '/root/upgrade.log' |
18 |
else: |
19 |
+ w = intf.progressWindow(_("Post Install"), |
20 |
+ _("Performing post install configuration..."), 6) |
21 |
logname = '/root/install.log' |
22 |
|
23 |
instLogName = instPath + logname |