[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[PATCH 1/2 master f14-branch] Fix non-dhcp network enablement in stage 2 (#640951)
- From: Radek Vykydal <rvykydal redhat com>
- To: anaconda-devel-list redhat com
- Subject: [PATCH 1/2 master f14-branch] Fix non-dhcp network enablement in stage 2 (#640951)
- Date: Thu, 7 Oct 2010 14:02:46 +0200
IPv4 DHCP configuration for enabled device was applied no matter
what the configuration in nm-c-e had been.
The fix is to set ONBOOT=yes (which brings the device up) not
before, but after running nm-c-e.
---
pyanaconda/gui.py | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/pyanaconda/gui.py b/pyanaconda/gui.py
index 1853b2d..c42dcea 100755
--- a/pyanaconda/gui.py
+++ b/pyanaconda/gui.py
@@ -922,8 +922,6 @@ class InstallInterface(InstallInterfaceBase):
# update ifcfg files for nm-c-e
self.anaconda.network.setNMControlledDevices(nm_controlled_devices)
- if not just_setup:
- self.anaconda.network.updateActiveDevices([install_device])
# we might want to do this only once
if self.anaconda.network.hasWirelessDev():
@@ -952,6 +950,7 @@ class InstallInterface(InstallInterfaceBase):
waited_devs = self.anaconda.network.getOnbootControlledIfaces()
else:
waited_devs = [install_device]
+ self.anaconda.network.updateActiveDevices([install_device])
self.anaconda.network.write()
--
1.7.2
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]