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 _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list