From 7c48fe6d8877ebe1ff79d7042885183cbbd03eb4 Mon Sep 17 00:00:00 2001 From: Paul Nasrat Date: Mon, 13 Mar 2006 16:47:22 +0000 Subject: don't clobber network on upgrades --- ChangeLog | 5 +++++ yuminstall.py | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index cae330e23..751971bf3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-03-13 Paul Nasrat + + * yuminstall.py (YumBackend.doPostSelection): Don't clobber + network on upgrades (#183203). + 2006-03-13 Chris Lumens * harddrive.py (HardDriveInstallMethod.mountMedia): Prompt for diff --git a/yuminstall.py b/yuminstall.py index 5f0023efa..49dbba82d 100644 --- a/yuminstall.py +++ b/yuminstall.py @@ -1007,7 +1007,8 @@ class YumBackend(AnacondaBackend): w = intf.progressWindow(_("Post Install"), _("Performing post install configuration..."), 6) - id.network.write(instPath) + if not id.getUpgrade(): + id.network.write(instPath) for tsmbr in self.ayum.tsInfo.matchNaevr(name='rhgb'): id.bootloader.args.append("rhgb quiet") -- cgit