Beispiel #1
0
 def make_filesystems(self):
     device = self.machine.array_hack(self.machine.current.machine_type)
     all_fsmounts = self.machine.get_installable_fsmounts()
     env = CurrentEnvironment(self.conn, self.machine.current.machine)
     for row in all_fsmounts:
         pdev = device + str(row.partition)
         if row.mnt_name in env.keys():
             print '%s held' % row.mnt_name
         else:
             print 'making filesystem for', row.mnt_name
             make_filesystem(pdev, row.fstype)
 def make_filesystems(self):
     device = self.machine.array_hack(self.machine.current.machine_type)
     all_fsmounts = self.machine.get_installable_fsmounts()
     env = CurrentEnvironment(self.conn, self.machine.current.machine)
     for row in all_fsmounts:
         pdev = device + str(row.partition)
         if row.mnt_name in env.keys():
             print '%s held' % row.mnt_name
         else:
             print 'making filesystem for', row.mnt_name
             make_filesystem(pdev, row.fstype)
 def make_filesystems(self):
     device = self.machine.array_hack(self.machine.current.machine_type)
     mddev = False
     if device == '/dev/md':
         mdnum = 0
         mddev = True
     all_fsmounts = self.machine.get_installable_fsmounts()
     env = CurrentEnvironment(self.conn, self.machine.current.machine)
     for row in all_fsmounts:
         if mddev:
             pdev = '/dev/md%d' % mdnum
             mdnum += 1
         else:
             pdev = device + str(row.partition)
         if row.mnt_name in env.keys():
             print '%s held' % row.mnt_name
         else:
             print 'making filesystem for', row.mnt_name
             make_filesystem(pdev, row.fstype)
Beispiel #4
0
 def make_filesystems(self):
     device = self.machine.array_hack(self.machine.current.machine_type)
     mddev = False
     if device == '/dev/md':
         mdnum = 0
         mddev = True
     all_fsmounts = self.machine.get_installable_fsmounts()
     env = CurrentEnvironment(self.conn, self.machine.current.machine)
     for row in all_fsmounts:
         if mddev:
             pdev = '/dev/md%d' % mdnum
             mdnum += 1
         else:
             pdev = device + str(row.partition)
         if row.mnt_name in env.keys():
             print '%s held' % row.mnt_name
         else:
             print 'making filesystem for', row.mnt_name
             make_filesystem(pdev, row.fstype)