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 --- yuminstall.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'yuminstall.py') 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