def setDefaultPartitioning(self, storage):
     BaseInstallClass.setDefaultPartitioning(self, storage)
     for autoreq in storage.autoPartitionRequests:
         if autoreq.mountpoint == "/":
             autoreq.maxSize = None
             autoreq.requiredSpace = 10 * 1024
         if autoreq.mountpoint == "/home":
             storage.autoPartitionRequests.remove(autoreq)
示例#2
0
 def setDefaultPartitioning(self, storage):
     BaseInstallClass.setDefaultPartitioning(self,
                                             storage)
     for autoreq in storage.autoPartitionRequests:
         if autoreq.mountpoint == "/":
             autoreq.maxSize=None
             autoreq.requiredSpace=24*1024
         if autoreq.mountpoint == "/home":
             storage.autoPartitionRequests.remove(autoreq)
示例#3
0
 def setDefaultPartitioning(self, storage):
     BaseInstallClass.setDefaultPartitioning(self,
                                             storage)
     for autoreq in storage.autopart_requests:
         if autoreq.mountpoint == "/":
             autoreq.max_size=None
             autoreq.required_space=Size("10GiB")
         if autoreq.mountpoint == "/home":
             storage.autopart_requests.remove(autoreq)
         if autoreq.mountpoint == "/boot/efi":
             autoreq.max_size=Size("500MiB")
         if autoreq.mountpoint == "/boot" and \
                 isinstance(platform, blivet.platform.EFI):
             # xen.efi don't need /boot
             storage.autopart_requests.remove(autoreq)
示例#4
0
 def __init__(self):
     BaseInstallClass.__init__(self)
示例#5
0
 def configure(self, anaconda):
     BaseInstallClass.configure(self, anaconda)
     BaseInstallClass.setDefaultPartitioning(self, anaconda.storage)
 def setGroupSelection(self, anaconda):
     BaseInstallClass.setGroupSelection(self, anaconda)
     map(lambda x: anaconda.backend.selectGroup(x), ["core"])
    def configure(self, anaconda):
	BaseInstallClass.configure(self, anaconda)
        BaseInstallClass.setDefaultPartitioning(self,
                                                anaconda.storage,
                                                anaconda.platform)
    def __init__(self):
	BaseInstallClass.__init__(self)
示例#9
0
 def configure(self, anaconda):
     BaseInstallClass.configure(self, anaconda)
示例#10
0
 def configure(self, anaconda):
     BaseInstallClass.configure(self, anaconda)
    def setSteps(self, anaconda):
	BaseInstallClass.setSteps(self, anaconda)
	anaconda.dispatch.skipStep("partition")
示例#12
0
 def configure(self, anaconda):
     BaseInstallClass.configure(self, anaconda)
     self.setDefaultPartitioning(anaconda.storage)
示例#13
0
 def setGroupSelection(self, anaconda):
     BaseInstallClass.setGroupSelection(self, anaconda)
示例#14
0
    def setSteps(self, anaconda):
	BaseInstallClass.setSteps(self, anaconda)
	anaconda.dispatch.skipStep("partition")
示例#15
0
 def setGroupSelection(self, anaconda):
     BaseInstallClass.setGroupSelection(self, anaconda)
     map(lambda x: anaconda.backend.selectGroup(x), ["core"])
示例#16
0
 def setGroupSelection(self, anaconda):
     BaseInstallClass.setGroupSelection(self, anaconda)