summaryrefslogtreecommitdiffstats
path: root/autopart.py
Commit message (Collapse)AuthorAgeFilesLines
* check to make sure that the size of our volume group hasn't changed such ↵Jeremy Katz2002-06-281-5/+26
| | | | that logical volumes no longer fit (#?????)
* missed a string for xlationMike Fulbright2002-06-281-1/+1
|
* make it so you get another chance if autopartitioning failsMike Fulbright2002-06-171-2/+8
|
* move autopart.doClearDependentDevices to ↵Jeremy Katz2002-06-111-33/+1
| | | | Partitions().deleteDependentRequests() and fix a few cases that weren't quite handled right
* set lv size in autopart loop if we have a percentage specifiedJeremy Katz2002-06-091-2/+11
|
* bump /boot suggestion to 100MMike Fulbright2002-06-071-1/+1
|
* clearpart needs to go through and delete raid or lvm devices sitting on top ↵Jeremy Katz2002-06-071-1/+36
| | | | of physical partitions as it goes through
* clean up getting of request sizes for lvm and raid to be just the same asJeremy Katz2002-05-311-16/+24
| | | | | | for partitions. clean up the ensuing mess. we also need to use proper sanity checking of requests before doing autopartitioning instead of the hack that was there before.
* give raid and lvm via kickstart a chance of actually workingJeremy Katz2002-05-291-1/+1
|
* migrate to using rhpl log functionMike Fulbright2002-05-231-2/+3
|
* 1) Fix all copyrights 2) move everything to use rhpl.translate instead of ↵Mike Fulbright2002-05-231-2/+2
| | | | our own translate.py
* more merging fun from the hampton branch. I'm pretty sure this doesn'tJeremy Katz2002-04-191-7/+19
| | | | work now, at least in gui. text mode might, though
* move a lot more out of partitioning.py... a lot of the functions are nowJeremy Katz2002-02-141-7/+45
| | | | methods of request classes or the Partitions class
* even more fun... move Partitions object to partitions.py and adjust accordingly.Jeremy Katz2002-02-131-2/+6
| | | | | move the Request object into partRequests.py and actually make it a nicer object with subclasses for the various types.
* stage 1 of the partitioning.py cleanup effort --Jeremy Katz2002-02-061-24/+26
| | | | | | | | | | | | | | 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
* lots of lvm ui fixes and sanity checkingMike Fulbright2002-02-011-2/+3
|
* rename field so we know its units is MBMike Fulbright2002-01-281-3/+3
|
* we can actually create logical volumes nowJeremy Katz2002-01-251-0/+5
|
* skeleton LVM code so that msf can start working on the real gui. doesn'tJeremy Katz2002-01-241-1/+6
| | | | actually create the volumes or anything yet
* if autopartitioning fails, we must unskip the partitioning screen to avoid a ↵Jeremy Katz2002-01-211-1/+4
| | | | traceback from the bootloader stuff
* kickstart harddrive wont work w/o this, since protected partitions dont get ↵Mike Fulbright2001-10-251-0/+2
| | | | set\!
* merge from 7-2-branchanaconda-gtk-2-0-baseJeremy Katz2001-09-181-0/+1
|
* merge changes from 7-2-branchJeremy Katz2001-09-181-5/+21
|
* avoid integer overflow (#53258)Jeremy Katz2001-09-051-1/+1
|
* attempt to converge quickly leaves free space sometimesMike Fulbright2001-08-291-5/+5
|
* fix for leaving a free cylinder at end of drive when imposing a fs max size ↵Mike Fulbright2001-08-271-7/+19
| | | | or user growing max size limit
* be consistent on failures between matt partitioning and dr mike partitioningJeremy Katz2001-08-241-1/+2
|
* if the flag isn't available, remove the partition from the disk so we don't ↵Jeremy Katz2001-08-241-0/+2
| | | | try to read it in populate()
* fix typobfox2001-08-221-1/+1
|
* going back and doing autopartitioning on a hard drive install more than once ↵Jeremy Katz2001-08-151-1/+2
| | | | was horked because we didn't reset the protected partitions
* fix using by-cylinder partitioning for bootable requestsJeremy Katz2001-08-151-1/+3
|
* bootable requests need to be fit at roughly the same priority as primary ↵Jeremy Katz2001-08-131-1/+1
| | | | only partitions so they meet their constraints
* use ALL space on the drive when growing. We were failing to use last little ↵Mike Fulbright2001-08-101-3/+8
| | | | bit if weighted amount to use was < # of sectors in a cylinder
* use the freespace prior to allocating any partitions to determine whatJeremy Katz2001-08-091-2/+4
| | | | we should try to get percentage wise (51146)
* i18n fixesMike Fulbright2001-08-081-4/+4
|
* fix creation of partitions which extend beyond the disk (50826)Jeremy Katz2001-08-061-0/+3
|
* fix formatting of warning screenMike Fulbright2001-08-021-6/+6
|
* make some constant strings get translatedMike Fulbright2001-08-021-1/+1
|
* why yes, we should raise an error here so we get a nice dialog instead of a ↵Jeremy Katz2001-08-011-2/+1
| | | | traceback (50620)
* oops, how was this ever expected to work?Jeremy Katz2001-08-011-0/+1
|
* copy the request before changing it so we can go back and do ↵Jeremy Katz2001-07-311-3/+5
| | | | autopartitioning again (50479)
* fix up the case where /boot wouldn't go to the second drive if there wasJeremy Katz2001-07-301-9/+13
| | | | | no space for it to go on the first requested drive (like if you left the existing partitions on the first drive)
* request sizes are megabytes... using the same units in comparisons is a ↵Jeremy Katz2001-07-251-1/+1
| | | | good thing (tm)
* set flags, then part typeMike Fulbright2001-07-251-1/+3
|
* set or clear the PARTITION_RAID flag appropriately with preexisting partitionsJeremy Katz2001-07-231-0/+4
|
* sanity checks for sizes need to actually look at the partition sinceJeremy Katz2001-07-231-1/+1
| | | | we could be a growable partition. so, now we need the diskset here too
* move definitions of CLEARPART_TYPE_* to partitioning.py to avoid circularJeremy Katz2001-07-231-4/+0
| | | | | import madness and fix everywhere that refers to the CLEARPART_TYPE_* to ensure that they import from partitioning and don't try to do so from autopart
* handling of the kickstart case where people want their partitions on a ↵Jeremy Katz2001-07-231-3/+28
| | | | specific preexisting partition
* catch parts of the bootable raid array in our aggressively placing bootJeremy Katz2001-07-221-1/+1
| | | | partitions at the beginning of disks
* check the installclass in doAutoPartition so that we don't raise dialogsJeremy Katz2001-07-221-3/+18
| | | | during kickstart for warnings and exit if there's an error partitioning