/[smeserver]/cdrom.image/sme8/updates/installclasses/smeinstallclass.py
ViewVC logotype

Diff of /cdrom.image/sme8/updates/installclasses/smeinstallclass.py

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

Revision 1.4 by slords, Wed Jun 10 14:22:18 2009 UTC Revision 1.5 by slords, Mon Nov 30 23:46:26 2009 UTC
# Line 208  class InstallClass(BaseInstallClass): Line 208  class InstallClass(BaseInstallClass):
208                      partitions.autoPartitionRequests.append(request)                      partitions.autoPartitionRequests.append(request)
209    
210                      if not flags.cmdline.has_key("nolvm"):                      if not flags.cmdline.has_key("nolvm"):
211                          request = partRequests.PartitionSpec(fileSystemTypeGet("software RAID"),                          if not flags.cmdline.has_key("multipart"):
212                                  size=(swapMin+4096)/(len(drives)-spares-max(0,level-4)),                              request = partRequests.PartitionSpec(fileSystemTypeGet("software RAID"),
213                                  drive=[drive], primary=1, grow=1, format=1)                                      size=(swapMin+1536)/(len(drives)-spares-max(0,level-4)),
214                                        drive=[drive], primary=1, grow=1, format=1)
215                            else:
216                                request = partRequests.PartitionSpec(fileSystemTypeGet("software RAID"),
217                                        size=(swapMin+5120)/(len(drives)-spares-max(0,level-4)),
218                                        drive=[drive], primary=1, grow=1, format=1)
219                          request.uniqueID = uniqueID + 50                          request.uniqueID = uniqueID + 50
220                          raid2.append(uniqueID + 50)                          raid2.append(uniqueID + 50)
221                          partitions.autoPartitionRequests.append(request)                          partitions.autoPartitionRequests.append(request)
# Line 223  class InstallClass(BaseInstallClass): Line 228  class InstallClass(BaseInstallClass):
228                          partitions.autoPartitionRequests.append(request)                          partitions.autoPartitionRequests.append(request)
229    
230                          request = partRequests.PartitionSpec(fileSystemTypeGet("software RAID"),                          request = partRequests.PartitionSpec(fileSystemTypeGet("software RAID"),
231                                  size=1500/(len(drives)-spares-max(0,level-4)),                                  size=1536/(len(drives)-spares-max(0,level-4)),
232                                  drive=[drive], grow=1, primary=1, format=1)                                  drive=[drive], grow=1, primary=1, format=1)
233                          request.uniqueID = uniqueID + 60                          request.uniqueID = uniqueID + 60
234                          raid3.append(uniqueID + 60)                          raid3.append(uniqueID + 60)
# Line 255  class InstallClass(BaseInstallClass): Line 260  class InstallClass(BaseInstallClass):
260                              mountpoint="/boot", drive=[drive], size=100, primary=1, format=1))                              mountpoint="/boot", drive=[drive], size=100, primary=1, format=1))
261    
262                      if not flags.cmdline.has_key("nolvm"):                      if not flags.cmdline.has_key("nolvm"):
263                          request = partRequests.PartitionSpec(fileSystemTypeGet("physical volume (LVM)"),                          if not flags.cmdline.has_key("multipart"):
264                                  drive=[drive], size=swapMin+4096, grow=1, primary=1, format=1)                              request = partRequests.PartitionSpec(fileSystemTypeGet("physical volume (LVM)"),
265                                        drive=[drive], size=swapMin+1536, grow=1, primary=1, format=1)
266                            else:
267                                request = partRequests.PartitionSpec(fileSystemTypeGet("physical volume (LVM)"),
268                                        drive=[drive], size=swapMin+5120, grow=1, primary=1, format=1)
269                          request.uniqueID = 200                          request.uniqueID = 200
270                          partitions.autoPartitionRequests.append(request)                          partitions.autoPartitionRequests.append(request)
271                      else:                      else:
272                          partitions.autoPartitionRequests.append(partRequests.PartitionSpec(fileSystemTypeGet("ext3"),                          partitions.autoPartitionRequests.append(partRequests.PartitionSpec(fileSystemTypeGet("ext3"),
273                                  mountpoint="/", drive=[drive], size=4096, grow=1, primary=1, format=1))                                  mountpoint="/", drive=[drive], size=1536, grow=1, primary=1, format=1))
274    
275                          partitions.autoPartitionRequests.append(partRequests.PartitionSpec(fileSystemTypeGet("swap"),                          partitions.autoPartitionRequests.append(partRequests.PartitionSpec(fileSystemTypeGet("swap"),
276                                  drive=[drive], size=swapMin, maxSizeMB=swapMax, grow=1, primary=1, format=1))                                  drive=[drive], size=swapMin, maxSizeMB=swapMax, grow=1, primary=1, format=1))
# Line 273  class InstallClass(BaseInstallClass): Line 282  class InstallClass(BaseInstallClass):
282    
283                  if not flags.cmdline.has_key("multipart"):                  if not flags.cmdline.has_key("multipart"):
284                      partitions.autoPartitionRequests.append(partRequests.LogicalVolumeRequestSpec(fileSystemTypeGet("ext3"),                      partitions.autoPartitionRequests.append(partRequests.LogicalVolumeRequestSpec(fileSystemTypeGet("ext3"),
285                              mountpoint="/", size=1300, volgroup=201, lvname="root", grow=1, format=1))                              mountpoint="/", size=1536, volgroup=201, lvname="root", grow=1, format=1))
286    
287                      partitions.autoPartitionRequests.append(partRequests.LogicalVolumeRequestSpec(fileSystemTypeGet("swap"),                      partitions.autoPartitionRequests.append(partRequests.LogicalVolumeRequestSpec(fileSystemTypeGet("swap"),
288                              size=swapMin, maxSizeMB=swapMax, volgroup=201, lvname="swap", grow=1, format=1))                              size=swapMin, maxSizeMB=swapMax, volgroup=201, lvname="swap", grow=1, format=1))
# Line 288  class InstallClass(BaseInstallClass): Line 297  class InstallClass(BaseInstallClass):
297                              mountpoint="/home/e-smith/files", size=1024, maxSizeMB=8192, volgroup=201, lvname="files", grow=1, format=1))                              mountpoint="/home/e-smith/files", size=1024, maxSizeMB=8192, volgroup=201, lvname="files", grow=1, format=1))
298    
299                      partitions.autoPartitionRequests.append(partRequests.LogicalVolumeRequestSpec(fileSystemTypeGet("ext3"),                      partitions.autoPartitionRequests.append(partRequests.LogicalVolumeRequestSpec(fileSystemTypeGet("ext3"),
300                              mountpoint="/tmp", size=512, maxSizeMB=4096, volgroup=201, lvname="tmp", grow=1, format=1))                              mountpoint="/tmp", size=1024, maxSizeMB=4096, volgroup=201, lvname="tmp", grow=1, format=1))
301    
302                      partitions.autoPartitionRequests.append(partRequests.LogicalVolumeRequestSpec(fileSystemTypeGet("swap"),                      partitions.autoPartitionRequests.append(partRequests.LogicalVolumeRequestSpec(fileSystemTypeGet("swap"),
303                              size=swapMin, maxSizeMB=swapMax, volgroup=201, lvname="swap", grow=1, format=1))                              size=swapMin, maxSizeMB=swapMax, volgroup=201, lvname="swap", grow=1, format=1))


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed