diff options
author | Paul Nasrat <pnasrat@redhat.com> | 2005-02-21 00:24:18 +0000 |
---|---|---|
committer | Paul Nasrat <pnasrat@redhat.com> | 2005-02-21 00:24:18 +0000 |
commit | d6184c707a14cd28b82694a42844d9958e0e64fe (patch) | |
tree | 7d340c7bb488aaf74b3a397af67d2a019e01a1a3 /installclass.py | |
parent | 1c7cf25d80ce974b1e29200e7ef05988ddae79cd (diff) | |
download | anaconda-d6184c707a14cd28b82694a42844d9958e0e64fe.tar.gz anaconda-d6184c707a14cd28b82694a42844d9958e0e64fe.tar.xz anaconda-d6184c707a14cd28b82694a42844d9958e0e64fe.zip |
Revert some more mac changes - fix parted instead
Diffstat (limited to 'installclass.py')
-rw-r--r-- | installclass.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/installclass.py b/installclass.py index 8fc78a08c..72c14c007 100644 --- a/installclass.py +++ b/installclass.py @@ -551,12 +551,7 @@ class BaseInstallClass: if doClear: partitions.autoClearPartType = clear partitions.autoClearPartDrives = [] - - if (iutil.getPPCMachine() == "PMac"): - # No LVM on a Mac partition table - partitions.autoPartitionRequests = autoCreatePartitionRequests(autorequests) - else: - partitions.autoPartitionRequests = autoCreateLVMPartitionRequests(autorequests) + partitions.autoPartitionRequests = autoCreateLVMPartitionRequests(autorequests) def setInstallData(self, id, intf = None): |