Пример #1
0
 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)
Пример #6
0
 def setGroupSelection(self, anaconda):
     BaseInstallClass.setGroupSelection(self, anaconda)
     map(lambda x: anaconda.backend.selectGroup(x), ["core"])
Пример #7
0
    def configure(self, anaconda):
	BaseInstallClass.configure(self, anaconda)
        BaseInstallClass.setDefaultPartitioning(self,
                                                anaconda.storage,
                                                anaconda.platform)
Пример #8
0
    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)