summaryrefslogtreecommitdiffstats
path: root/raid.py
Commit message (Collapse)AuthorAgeFilesLines
* Replace old storage modules.David Lehman2009-02-231-228/+0
|
* Syntax fixes for the new pyparted.David Cantrell2009-02-121-3/+3
| | | | | | | | | To get a parted.Device object, we call: parted.getDevice(path) To create a new parted.Disk object, we need a parted.Device and we call: parted.Disk(device=parted.Device)
* Removed partedUtils.getRaidPartitions()David Cantrell2009-02-121-1/+1
| | | | Now provided by parted.Disk.getRaidPartitions()
* Removed partedUtils.get_partition_name()David Cantrell2009-02-121-1/+1
| | | | Now provided by parted.Partition.getDeviceNodeName()
* Handle preexisting swraid w/ encrypted member disks/partitions.David Lehman2008-08-261-1/+8
|
* Clean up typos and other things for GPLv2+ changes.David Cantrell2007-12-171-1/+1
| | | | | | | Shorten 'Red Hat Author(s)' to just 'Author(s)'. Perhaps eventually we'll get an AUTHORS file and will just remove author names from the individual files. Also fixed a type in scripts/dumphdrlist.py where Author was listed twice.
* Common GPLv2+ boilerplate on toplevel python source files.David Cantrell2007-12-171-8/+15
| | | | | | Updated all *.py files to have a uniform GPL boilerplate. Expanded copyright year ranges and listed authors (if they were in the comment section) under the Red Hat Author(s) section.
* Fix up device names when probing.Bill Nottingham2007-12-071-1/+1
|
* Don't try and make devices. Adjust calls as necessary.Bill Nottingham2007-12-071-2/+1
|
* * partitions.py: Move partitionObjectsInitialize() andDavid Cantrell2007-10-291-1/+1
| | | | | | | | | | partitioningComplete() from partitioning.py to this file. * partitioning.py: Removed. * dispatch.py: import partitioning -> import partitions * fsset.py: Likewise. * raid.py: Likewise. * iw/autopart_type.py: Likewise.
* Clean up usage of /tmp for device nodes (patch from notting@redhat.com).Chris Lumens2007-10-241-3/+2
|
* Fix typo.Chris Lumens2007-03-271-1/+1
|
* More RAID10 fixes (#230268).Chris Lumens2007-03-221-5/+7
|
* How about we fix all the typos?David Cantrell2007-03-021-2/+1
|
* Fix typo from RAID10 patch.Chris Lumens2007-03-021-2/+1
|
* Apply patch to add support for RAID10 (Orion Poplawski <orion@cora.nwra.com>,Chris Lumens2007-02-281-2/+11
| | | | #230268).
* 2006-10-02 Jeremy Katz <katzj@redhat.com>Jeremy Katz2006-10-021-0/+1
| | | | * raid.py (getRaidLevels): Ensure raid levels are sorted (#208478)
* - make the isRaidX() calls return true/falsePeter Jones2005-11-171-28/+12
|
* Use new logging system.Chris Lumens2005-08-121-14/+15
|
* 2005-05-19 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-05-191-1/+1
| | | | | | | | | | | | * fsset.py (prepbootFileSystem.__init__): PReP partitions should be marked bootable, from Dustin Kirkland. * raid.py (availRaidLevels): Allow ppc to have a RAID /boot, from Dustin Kirkland. * partitions.py (Partitions.getBootableRequest): Split PMac/pSeries handling to be different. pSeries can do bootable PReP. Patch from Dustin Kirkland <dustin.kirkland@us.ibm.com>
* getRaidUtils() doesn't need "raid." before it; that just breaks thingsPeter Jones2005-03-091-1/+1
|
* move availRaidLevels from fsset.py to raid.py, so it can be evaluated rightPeter Jones2005-03-091-20/+22
| | | | in all imports
* determine available raid levels based on what modules are availableJeremy Katz2004-05-191-0/+21
|
* this should add raid6 support (#122360)Jeremy Katz2004-05-191-1/+12
|
* merge from taroonJeremy Katz2003-09-201-0/+4
| | | | fairly large merge, but all fairly obvious stuff. will test in a tree tomorrow
* fix for parted api changeJeremy Katz2002-12-041-1/+1
|
* log failure to read raid sbMike Fulbright2002-06-251-0/+1
|
* migrate to using rhpl log functionMike Fulbright2002-05-231-1/+2
|
* 1) Fix all copyrights 2) move everything to use rhpl.translate instead of ↵Mike Fulbright2002-05-231-1/+1
| | | | our own translate.py
* move a lot more out of partitioning.py... a lot of the functions are nowJeremy Katz2002-02-141-0/+19
| | | | methods of request classes or the Partitions class
* stage2 of the partitioning.py cleanupJeremy Katz2002-02-071-1/+62
| | | | | | | * move the following functions from partitioning.py -> raid.py isRaid5, isRaid1, isRaid0, get_raid_min_members, get_raid_max_spares * update other sources accordingly
* stage 1 of the partitioning.py cleanup effort --Jeremy Katz2002-02-061-2/+3
| | | | | | | | | | | | | | 1) move the following functions from partitioning.py -> partedUtils.py get_flags, start_sector_to_cyl, end_sector_to_cyl, start_cyl_to_sector, end_cyl_to_sector, getPartSize, getPartSizeMB, getDeviceSizeMB, get_partition_by_name, get_partition_name, get_partition_file_system_type, set_partition_file_system_type, get_partition_drive, map_foreign_to_fsname, filter_partitions, get_logical_partitions, get_primary_partitions, get_raid_partitions, get_lvm_partitions, 2) move PartitioningError and PartitioningWarning classes from partitioning.py -> partErrors.py Change everything that depends on these functions to use the new location
* balkan go bye-bye (51888)Jeremy Katz2001-08-161-13/+13
|
* backwards, oopsMatt Wilson2001-08-141-2/+2
|
* Reconstrict an existing RAIDDevice for those devices mentioned in the fstab. ↵Matt Wilson2001-08-091-6/+7
| | | | | | | This is so we can get the SW RAID member that is bootable when we go to install GRUB. (#51213)
* make raid inconsistencies non fatal (#36985)Matt Wilson2001-07-231-11/+16
|
* copyrightMatt Wilson2001-06-221-0/+16
|
* more informative messagesMatt Wilson2001-04-051-6/+11
|
* don't barf on hotsparesMatt Wilson2001-02-201-1/+1
|
* just skip partitions with bad magicMatt Wilson2001-02-141-2/+6
|
* merge from anaconda-7-0-alpha-branchMatt Wilson2000-12-051-1/+1
|
* use symbolc names for balkan partition typesErik Troan2000-05-051-1/+1
|
* wasn't scanning past first drive\!Mike Fulbright2000-03-311-13/+17
|
* various fixes for raid upgrades (which seem to work now)Matt Wilson1999-12-291-3/+7
|
* *** empty log message ***Erik Troan1999-12-281-0/+61