summaryrefslogtreecommitdiffstats
path: root/iw
Commit message (Collapse)AuthorAgeFilesLines
* Make text for autopartitioning types clearer (#441350)Jeremy Katz2008-12-011-4/+4
| | | | | We used "default" a lot in the text. Change based on notting's suggestion and make the intro text a little clearer to match
* Add comps groups for new repos that are added (#470653)Jeremy Katz2008-11-121-0/+16
| | | | | | | For new repos that are added, we should also be sure to add their comps information to the base comps object. This largely cut and pastes bits from yum's doGroupSetup(), but that can't be done on a per-repo basis. We should add some API, but this will do for now
* iscsi do missing value check only onceHans de Goede2008-11-111-22/+6
| | | | | | | Currently the iscsi code checks for giving a password but not a username or vica versa in both the interface and the iscsi code, this patch removes the unneeded check from the interface code, this is a preparation patch for fixing #463156, #461830
* Include cracklib .mo files and look up strings in the right domain.Chris Lumens2008-11-111-2/+1
|
* Set the default keyboard based on the language (#470446).Chris Lumens2008-11-101-0/+1
| | | | | | This is required by changes I made in s-c-keyboard to fix a traceback in firstboot reconfig mode. Seems like having both of these working at the same time is very difficult.
* Set the correct path when using the directory chooser.Chris Lumens2008-11-051-1/+1
|
* If there's no language selected, don't traceback (#469578).Chris Lumens2008-11-031-2/+4
|
* Improve filtering of non-available groups (#469438)Jeremy Katz2008-11-031-20/+3
| | | | | | | | We show groups that don't have any of their mandatory packages available which is less than ideal as, eg, xfce-desktop gets shown just because gdm is on the dvd. So make our filtering a little bit stronger. And make sure that text mode is using the same filtering
* Fix the last pychecker warnings in masterHans de Goede2008-10-302-2/+2
| | | | Fix the last few pychecker warnings in master
* Fix various syntax errors caught by PyCheckerHans de Goede2008-10-292-3/+2
| | | | Fix various syntax errors caught by PyChecker
* Do all new device passphrase prompting from partitioningComplete.David Lehman2008-10-271-6/+0
|
* Revert "Say we are unable to configure the network interface (#467960)"David Cantrell2008-10-241-17/+7
| | | | This reverts commit d5c0a7287fe810c06968687777bdca527a44258e.
* Say we are unable to configure the network interface (#467960)David Cantrell2008-10-231-7/+17
| | | | | | | | In stage 2 when you get the 'Enable network interface' dialog, if you select an interface that is not able to connect to a network, we just wait and then take the user back to the Enable network interface dialog. Before going back to the dialog, tell the user we were unable to configure the selected interface.
* Only bring up the netconfig dialog if the repo requires networking.Chris Lumens2008-10-171-9/+9
|
* Fix bringing up the network in rescue mode (#466523).Chris Lumens2008-10-101-3/+8
|
* Fix sorting of repos so we always return an integer value (#466174).Chris Lumens2008-10-091-6/+11
|
* Automatically select NIC based on ksdevice= boot parameter.David Cantrell2008-10-021-4/+13
| | | | | | If you boot with boot.iso and pass ksdevice=DEVICE or ksdevice=MACADDR, use that to automatically select the NIC to use when we ask the user to bring up the network for installation.
* Gateway and nameserver are optional for static network configuration.David Cantrell2008-09-301-2/+3
| | | | | | Do not force users to provide a gateway or a nameserver, just pass if those are missing. However, if they are provided, still raise an error if the provided value is incorrect.
* Store nameserver in NetworkDevice object.David Cantrell2008-09-301-10/+2
| | | | | | Store provided nameserver as the 'DNS1' value in the NetworkDevice object, rather than writing out resolv.conf from the netconfig interface code.
* Fix static network configuration from boot.iso installs.David Cantrell2008-09-291-1/+3
| | | | | | Make sure we write out BOOTPROTO=static and that we add the GATEWAY line to the ifcfg-DEVICE file, otherwise we get an incomplete network configuration from NetworkManager.
* Use all caps naming for the netdev keys.David Cantrell2008-09-291-7/+7
|
* Don't traceback if no baseurl has been set yet.Chris Lumens2008-09-291-2/+6
|
* Reduce code duplication by moving methods into backendJeremy Katz2008-09-291-21/+2
|
* Select packages after repos are set up (#457583)Jeremy Katz2008-09-291-4/+8
| | | | | | | | | | Set up which packages are actually selected after you've done your repo configuration so that we don't have packages set to be installed from repos which no longer exist. To do this, we switch to using whether or not the group is default rather than selecting/deselecting groups in task selection. Then, move the base package selecting to be later
* Cleanups and simplifications to repo setup (clumens)Jeremy Katz2008-09-291-36/+39
| | | | Simplify repo setup and have less duplication from base yum
* Sort Installation Repo to the top of the repo list.Chris Lumens2008-09-291-0/+12
|
* Set the first network device in the list to active.David Cantrell2008-09-241-1/+4
| | | | | Got rid of firstnetdev, so just set the first one in the list be the active one.
* Get rid of firstnetdevice in NetworkDavid Cantrell2008-09-241-2/+1
| | | | | | At least for now, I see no need for firstnetdevice in the same way before we started using NetworkManager. Might have to come back for specific cases, but I don't think it's necessary.
* Fix problems with bringDeviceUp() calls (#463512)David Cantrell2008-09-241-2/+3
| | | | | | | Changed bringDeviceUp() in network.py to bringUp() since it really just writes out all new network configuration information and lets NetworkManager take over from there. Correct the calls to this method so we don't get tracebacks anymore.
* Add getDefaultHostname() to network.pyDavid Cantrell2008-09-181-9/+1
| | | | | | getDefaultHostname() returns a string to the caller (either the iw or textw interface that contains the default hostname to populate the UI with.
* Call network.bringDeviceUp() instead of old isys functions.David Cantrell2008-09-151-21/+11
| | | | | Both isys.dhcpNetDevice() and isys.configNetDevice() have been replaced with network.bringDeviceUp().
* There's only one passphrase member (encryptionPassphrase) in Partitions.David Lehman2008-09-151-3/+6
| | | | | | | We only store one passphrase in the Partitions instance. A LUKSDevice instance can contain a different passphrase if it's a preexisting device or if the device was created in kickstart w/ a passphrase specified in the part/logvol/raid command.
* Don't prompt for a passphrase when creating encrypted devices.David Lehman2008-09-153-125/+10
|
* Fix the crash reported in bug 454135Hans de Goede2008-09-151-0/+2
| | | | | This attached patch only allows selection of devices known by booty as bootloader target disk, fixing the crash reported in bug 454135
* Add full CHAP support to iSCSI. (rhbz#432819)Hans de Goede2008-09-151-7/+38
| | | | | Forwart port of rhel-5 patch by pjones, commit-id: e9556f9e39629534b4b44ba64c7fef6b981b4f0e
* sys.stderr.write needs a newline.Chris Lumens2008-09-101-1/+1
|
* print doesn't yet support the file= syntax in our version of python.Chris Lumens2008-09-101-2/+2
|
* Fix line wrapping on part type screen (jlaska, #461759).Chris Lumens2008-09-101-2/+2
|
* Use print() as a function.Peter Jones2008-09-083-3/+3
|
* Reword text for easy of translating plurals (#460728).Chris Lumens2008-09-041-3/+1
|
* Remove last vestiges of rhpxl and pirut.Chris Lumens2008-09-031-1/+0
|
* Do repo setup and sack setup as separate steps.Chris Lumens2008-09-031-1/+2
| | | | | | | | This fixes a bug where yum wants all the repos set up before it does sack setup that only appears with the blacklist/whiteout plugins enabled. It also brings us more in line with how yum really works - where the two are completely separate steps. backend.doRepoSetup has also been renamed to backend.doBackendSetup to sound a little less yum-specific.
* Rewrite NetworkWindow to only prompt for hostname.David Cantrell2008-08-281-888/+42
| | | | | | | Remove all existing NetworkWindow code and read in the interface defined in network.glade. Prompt for hostname, validate it, force user to supply some sort hostname, and continue.
* Remove invalid line iw/autopart_type.pyDavid Cantrell2008-08-271-1/+0
| | | | | A CVS log comment found its way in to this source file somehow.
* Fix text wrap width on the partition type combo, for real this time (#221791)dlehman2008-08-261-2/+3
|
* Use dbus in hasActiveNetDev() and _anyUsing()David Cantrell2008-08-251-3/+3
| | | | | | | Rewrote the hasActiveNetDev() and _anyUsing() function in network.py to talk to NetworkManager via dbus. Modified the calls in iw/network_gui.py and textw/network_text.py that use these functions.
* Support establishing a global passphrase when creating encrypted devices.David Lehman2008-08-194-6/+66
|
* Display the lock icon for encrypted RAID members. (#459123)David Lehman2008-08-191-0/+3
|
* Fix traceback in passphrase handling code for encrypted RAID requests. (#459121)David Lehman2008-08-141-2/+2
|
* Preserve baseurl/mirrorlist and mirrorlist checkbox settings across loads.Chris Lumens2008-08-081-1/+3
|