Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 4
0
 def __init__(self):
     BaseInstallClass.__init__(self)
Ejemplo n.º 5
0
 def configure(self, anaconda):
     BaseInstallClass.configure(self, anaconda)
     BaseInstallClass.setDefaultPartitioning(self, anaconda.storage)
Ejemplo n.º 6
0
 def setGroupSelection(self, anaconda):
     BaseInstallClass.setGroupSelection(self, anaconda)
     map(lambda x: anaconda.backend.selectGroup(x), ["core"])
Ejemplo n.º 7
0
    def configure(self, anaconda):
	BaseInstallClass.configure(self, anaconda)
        BaseInstallClass.setDefaultPartitioning(self,
                                                anaconda.storage,
                                                anaconda.platform)
Ejemplo n.º 8
0
    def __init__(self):
	BaseInstallClass.__init__(self)
Ejemplo n.º 9
0
 def configure(self, anaconda):
     BaseInstallClass.configure(self, anaconda)
Ejemplo n.º 10
0
 def configure(self, anaconda):
     BaseInstallClass.configure(self, anaconda)
Ejemplo n.º 11
0
    def setSteps(self, anaconda):
	BaseInstallClass.setSteps(self, anaconda)
	anaconda.dispatch.skipStep("partition")
Ejemplo n.º 12
0
 def configure(self, anaconda):
     BaseInstallClass.configure(self, anaconda)
     self.setDefaultPartitioning(anaconda.storage)
Ejemplo n.º 13
0
 def setGroupSelection(self, anaconda):
     BaseInstallClass.setGroupSelection(self, anaconda)
Ejemplo n.º 14
0
    def setSteps(self, anaconda):
	BaseInstallClass.setSteps(self, anaconda)
	anaconda.dispatch.skipStep("partition")
Ejemplo n.º 15
0
 def setGroupSelection(self, anaconda):
     BaseInstallClass.setGroupSelection(self, anaconda)
     map(lambda x: anaconda.backend.selectGroup(x), ["core"])
Ejemplo n.º 16
0
 def setGroupSelection(self, anaconda):
     BaseInstallClass.setGroupSelection(self, anaconda)