diff options
author | Mike Fulbright <msf@redhat.com> | 1999-12-06 21:24:57 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 1999-12-06 21:24:57 +0000 |
commit | 0d04e6b56c99dd4ea0145c1799863efc94fbbc73 (patch) | |
tree | 7971ef334d06a2f1cb88bb1540da61a26434f41e /iw | |
parent | b6ae83ecc9c73cb5037ea3a10b7827ea947a6031 (diff) | |
download | anaconda-0d04e6b56c99dd4ea0145c1799863efc94fbbc73.tar.gz anaconda-0d04e6b56c99dd4ea0145c1799863efc94fbbc73.tar.xz anaconda-0d04e6b56c99dd4ea0145c1799863efc94fbbc73.zip |
- Added support to use existing XF86Config file in reconfig mode
- Reconfig mode following inittab default runlevel display mode (text for 3,
GUI for 5)
- made dhcp the default in GUI mode as well as text mode
Diffstat (limited to 'iw')
-rw-r--r-- | iw/network.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/iw/network.py b/iw/network.py index 216f107f2..6c802df46 100644 --- a/iw/network.py +++ b/iw/network.py @@ -168,7 +168,8 @@ class NetworkWindow (InstallWindow): self.ipTable = GtkTable (len (options), 2) # this is the iptable used for DNS, et. al DHCPcb.connect ("toggled", self.DHCPtoggled, (devs[i], ipTable)) - DHCPcb.set_active (devs[i].get ("bootproto") == "dhcp") + DHCPcb.set_active (devs[i].get ("bootproto") == "dhcp" or + devs[i].get ("bootproto") == "") forward = lambda widget, box=box: box.focus (DIR_TAB_FORWARD) |