summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* The firmware and additional-web-server groups no longer exist (#555609).Chris Lumens2010-01-151-5/+5
|
* Fix a traceback adding RAID devices to the filtering UI.Chris Lumens2010-01-151-1/+1
|
* reIPL code cleanup in loaderDavid Cantrell2010-01-151-3/+2
| | | | | | | | Hans' fixes from this message: https://www.redhat.com/archives/anaconda-devel-list/2009-December/msg00473.html Keeping the code consistent across master, rhel6-branch, and rhel5-branch.
* Show call depth with spaces in log_method_call()Peter Jones2010-01-151-3/+7
| | | | | Prepend log_method_call()'s output with spaces corresponding to the depth of the current call stack, so you can see what's calling what.
* iutil.execWithRedirect() hasn't used searchPath= since 2006. Take it out.Peter Jones2010-01-1511-33/+17
| | | | | iutil.execWithRedirect() stopped doing anything with searchPath in 2006 when clumens committed d0dec24. Remove these silly vestigal bits.
* Look for the SSH config file in /etc/ssh on s390 as well (#555691).Chris Lumens2010-01-151-1/+1
|
* Changed the architecture check from __ppc64__ to __powerpc64__ (#555669)Martin Gracik2010-01-152-2/+2
| | | | | | Wrong check for the architecture resulted in having no lib64 directories in LD_LIBRARY_PATH, and that's why anaconda couldn't find the libudev library.
* Fix the blkid infinite loop. (#555601)Martin Sivak2010-01-151-1/+1
|
* Testing mode was removed.Radek Vykydal2010-01-151-5/+3
|
* There's no reason to keep bits of mkinitrd in upd-instroot.Peter Jones2010-01-141-3/+2
| | | | These are there for historical reasons and need to go.
* Support the new excludedGroupList in pykickstart (#554717).Chris Lumens2010-01-142-2/+4
| | | | | | This provides better support for excluding groups. Now, groups that were not previously listed (because they were covered by a glob, for instance) can also be removed.
* Use passed in anaconda parameter instead of relying on handlerHans de Goede2010-01-141-35/+23
| | | | | | | | | | | | Currently we rely on self.handler being defined in our execute() methods of pykickstart command/data derived classes. But self.handler is is not defined for BaseData derived classes, which we fix by some trickery to define it anyways. This patch replaces the trickery by using the anaconda parameter all the execute() method of pykickstart command/data derived classes have, this allows access to the same object through anaconda.id.ksdata, without requiring the trickery.
* kickstart.py: Fix stdoutLog not being definedHans de Goede2010-01-141-0/+1
|
* pylint error fixes round 2Hans de Goede2010-01-1412-20/+18
| | | | | | | | | | | - Remove unnecessary semi colons in various places - textw/upgrade_text.py: add a few missing imports - Fix various missplaced doc strings - Fix several double imports - Fix AnacondaKSScript.run: Module 'os' has no 'exists' member - users.py: Remove double definition of Users.setRootPassword - yuminstall.py: correct typo reop -> repo - yuminstall.py: _run: anaconda -> self.anaconda
* Fixup various errors detected by pylintHans de Goede2010-01-148-9/+12
| | | | | | | | | | | | | | | | | | I've been running pylint on a subset of anaconda: booty storage iw/*.py platform.py And it has found various errors this commit fixes: - Restore line accidently dropped from iscsi.py - execWithPulseProgress should propagate the return value of execWithCallback - storage.formats.fs:535 (FS.doCheck): self.intf should be just intf - storage.formats.fs: add missing "import sys" (for sys.exit) - advanced_config.py add missing import for NetworkConfigurator - lvm_dialog_gui.py: VolumeGroupEditor.editLogicalVolume dev was renamed to d - partition_gui.py: remove an unneeded semicolon - partition_gui.py: PartitionWindow.createCB rc should be dialog_rc - storage.FSSet.write: put docstring in the proper place - platform.Sparc.minimumSector: sectors should be sector
* mdraid: various changes to options for new mdraid array creationHans de Goede2010-01-142-1/+16
| | | | | | | | | | | | | | | As discussed on the mailinglist, mdadm will be moving to creating version 1.1 metadata by default, and we should be creating arrays with bitmaps (except for /boot and swap). So this patch adds parameters to mdcreate to specify wether to use a bitmap or not and which metadata version to use. It then changes MDRaidArrayDevice.create() to: 1) For /boot force metadata version to 1.0, as grub cannot handle 1.1, and don't use a bitmap. 2) For swap don't use a bitmap. 3) Everything else create with bitmap
* Emit a dracut setup string for the root device itselfHans de Goede2010-01-141-1/+1
| | | | | | | We were only emitting dracut setup strings for devices the root device depends on, not for the root device itself. This causes non booting systems when the root device itself is of a type which needs a setup string (such as a regular mdraid array).
* Fix path mistakes in dasd_settle() in loader/linuxrc.s390David Cantrell2010-01-131-3/+3
| | | | Fix some stupid path mistakes in dasd_settle().
* Do not write HWADDR to ifcfg file on s390x for OSA Layer 2 (#546005)David Cantrell2010-01-131-0/+3
| | | | | On s390x, if an interface is in OSA layer 2 mode, do not write the HWADDR setting to the ifcfg file.
* Poll DASD status for 'online' or 'unformatted' (#536803)David Cantrell2010-01-131-0/+24
| | | | | | Give DASD devices some time to enter the online or unformatted state before calling udevadm settle. Max duration of loop is suggestion from IBM.
* Add back hald for Xorg input device queries (#553780)David Cantrell2010-01-133-1/+33
| | | | | This reverts commit 13a27933b4b651317deec74cc80daaab5041d206. Xorg is asking hal for input device information.
* Support moving multiple rows at once in the cleardisks UI.Chris Lumens2010-01-131-22/+48
|
* Allow disks in the filter and cleardisks UIs to be selected via double-click.Chris Lumens2010-01-132-2/+12
|
* Don't log the big parted.Partition string every time we do a flag op.David Lehman2010-01-131-8/+4
|
* Check for disklabels on unpartitionable devices. (#539482)David Lehman2010-01-131-5/+22
| | | | | | If an unpartitionable device contains a disklabel we ignore any partitions on that device, but we want to show that the device does contain a partition table in UI.
* Make partitioned attr depend on whether the device is partitionable.David Lehman2010-01-132-1/+5
| | | | This way lvm lvs containing a disklabel will not be treated like disks.
* Make sure to clear partitions before destroying a disklabel.David Lehman2010-01-131-0/+3
| | | | | | | | | This becomes important when removing a disklabel from a device which has a disklabel and partitions but which is not something we support partitioning (eg: lvm lv). In normal cases the partitions will already have been removed, but in the case of an unsupported partitioned device we ignore the partitions when scanning and so have to remove them this way.
* Raise an exception when /etc/fstab contradicts detected fs type (#536906)David Lehman2010-01-131-1/+1
|
* Don't include read-only filesystems in fsFreeSpace. (#540525)David Lehman2010-01-131-0/+6
|
* NTFS filesystems are not really modifiable in any real sense. Admit it.David Lehman2010-01-131-1/+1
|
* New version, again.Chris Lumens2010-01-123-11/+14
|
* Fix implicit declaration of things in sys/stat.h.Chris Lumens2010-01-122-0/+2
|
* New version.Chris Lumens2010-01-123-10/+15
|
* Fix the obvious problem in my last commit to exception.py.Chris Lumens2010-01-111-1/+2
|
* devicetree.devices is a list, not a dict (#554455).Chris Lumens2010-01-111-1/+1
| | | | This one somehow eluded the patch that corrected all the others.
* Try to copy the correct traceback file, not anacdump.txt.Chris Lumens2010-01-111-2/+2
|
* Make sure /tmp/DD exists before trying to copy it.Chris Lumens2010-01-111-4/+5
|
* New version.David Cantrell2010-01-083-39/+42
|
* st_size is off64_t on i386, off_t on others.David Cantrell2010-01-081-0/+4
|
* New version.David Cantrell2010-01-083-3/+6
|
* RPM version check correction.David Cantrell2010-01-081-1/+1
| | | | | Though --modversion reports 4.8.0-beta1, the test needs to check for >= 4.8.0.
* New version.David Cantrell2010-01-083-289/+318
|
* fstat->st_size is a long unsigned int, not a long long unsigned int.David Cantrell2010-01-081-1/+1
|
* Use libarchive and rpm pkg-config files during build.David Cantrell2010-01-082-5/+6
|
* Take ignoredDisks into account on the filter screen as well.Chris Lumens2010-01-081-6/+13
| | | | | If ignoredisk --disks= was given, of course there's not going to be anything in exclusiveDisks. So don't rely solely on that.
* Don't wait on the filtertype screen on kickstart installs.Chris Lumens2010-01-081-2/+8
| | | | | | | | Since ignoredisk is an optional command and leaving it out of a kickstart file means you don't want to ignore anything, there's no reason to stop on that screen and wait for input if ignoredisk was not specified. However, if this is an interactive kickstart install we do still need to stop and ask.
* Our overridden AutoPart class must be mentioned in commandMap.Chris Lumens2010-01-081-0/+1
| | | | Otherwise, the autopart command won't actually do anything.
* Reword filter UI introductory text to be less confusing.Chris Lumens2010-01-081-1/+1
|
* Install the driver discs according to what was loaded in stage1Martin Sivak2010-01-085-21/+50
|
* Use the updated DriverDisc code in loaderMartin Sivak2010-01-082-0/+47
| | | | | | - enable dlabel on RHEL by default - use glib's linked lists to traverse through available DDs - run depmod if the .rundepmod trigger file is present