summaryrefslogtreecommitdiffstats
path: root/installclasses/custom.py
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2001-06-20 01:46:34 +0000
committerErik Troan <ewt@redhat.com>2001-06-20 01:46:34 +0000
commitd2b85ad932ca315f00ca72527e87ea9a059f74e6 (patch)
tree3bc31ce8d092457372b4cd1b1bad60b45dad0b32 /installclasses/custom.py
parent1a690b55258ae286bee27e4d1db22c527862837b (diff)
downloadanaconda-d2b85ad932ca315f00ca72527e87ea9a059f74e6.tar.gz
anaconda-d2b85ad932ca315f00ca72527e87ea9a059f74e6.tar.xz
anaconda-d2b85ad932ca315f00ca72527e87ea9a059f74e6.zip
merge from (now defunct) dispatch branch
Diffstat (limited to 'installclasses/custom.py')
-rw-r--r--installclasses/custom.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/installclasses/custom.py b/installclasses/custom.py
index c35b01b29..9691cc688 100644
--- a/installclasses/custom.py
+++ b/installclasses/custom.py
@@ -12,22 +12,4 @@ class InstallClass(BaseInstallClass):
sortPriority = 10000
- def __init__(self, expert):
- BaseInstallClass.__init__(self)
-
- if os.uname ()[4] != 'sparc64':
- self.addNewPartition('/boot', (48, -1, 0), (None,-1,0), (0,0))
- self.addNewPartition('/', (700, -1, 1), (None, -1, 0), (0,0))
- self.setClearParts(FSEDIT_CLEAR_LINUX,
- warningText = N_("Automatic partitioning will erase any preexisting Linux "
- "installations on your system."))
-
- # 2.4 kernel requires more swap, so base amount we try to get
- # on amount of memory
- (minswap, maxswap) = iutil.swapSuggestion()
- self.addNewPartition('swap', (minswap, maxswap, 1), (None, -1, 0), (0,0))
-
-
-
-