diff options
Diffstat (limited to 'kickstart.py')
-rw-r--r-- | kickstart.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/kickstart.py b/kickstart.py index a06373e72..c8f022851 100644 --- a/kickstart.py +++ b/kickstart.py @@ -560,6 +560,7 @@ class KickstartBase(BaseInstallClass): "skipx" : self.doSkipX , "text" : None , "graphical" : None , + "cmdline" : None , "timezone" : self.doTimezone , "url" : None , "upgrade" : self.doUpgrade , @@ -1024,6 +1025,14 @@ class KickstartBase(BaseInstallClass): if recommended: (size, maxSize) = iutil.swapSuggestion() grow = 1 + # if people want to specify no mountpoint for some reason, let them + # this is really needed for pSeries boot partitions :( + elif extra[0] == 'None': + mountpoint = None + if fstype: + filesystem = fileSystemTypeGet(fstype) + else: + filesystem = fileSystemTypeGetDefault() elif extra[0].startswith("raid."): filesystem = fileSystemTypeGet("software RAID") |