diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-06-07 03:42:47 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-06-07 03:42:47 +0000 |
commit | d5e609015b32fb8f65964823a360585eff37276f (patch) | |
tree | 9217bc216dbc269e40b1a1825b728c2a15c9680c /partitions.py | |
parent | f3b67d8c90d4aa3e142b543795b7bdd0ef8d7292 (diff) | |
download | anaconda-d5e609015b32fb8f65964823a360585eff37276f.tar.gz anaconda-d5e609015b32fb8f65964823a360585eff37276f.tar.xz anaconda-d5e609015b32fb8f65964823a360585eff37276f.zip |
bring in preexisting raid partitions also. use new fs sniffer for both raid and lvm
Diffstat (limited to 'partitions.py')
-rw-r--r-- | partitions.py | 80 |
1 files changed, 58 insertions, 22 deletions
diff --git a/partitions.py b/partitions.py index 78783be5c..4f6713a92 100644 --- a/partitions.py +++ b/partitions.py @@ -136,20 +136,58 @@ class Partitions: part = disk.next_partition(part) # now we need to read in all pre-existing RAID stuff - # XXX still needs implementing + diskset.startAllRaid() + mdList = diskset.mdList + for raidDev in mdList: + (theDev, devices, level, numActive) = raidDev + + # is minor always mdN ? + minor = int(theDev[2:]) + raidvols = [] + for dev in devices: + req = self.getRequestByDeviceName(dev) + if not req: + log("RAID device %s using non-existent partition %s" + %(theDev, dev)) + continue + raidvols.append(req.uniqueID) + + + fs = partedUtils.sniffFilesystemType(theDev) + if fs is None: + fsystem = fsset.fileSystemTypeGet("foreign") + else: + fsystem = fsset.fileSystemTypeGet(fs) + + if fs == "swap": + mnt = "swap" + # more forced swap format hacking + format = 1 + else: + mnt = None + format = 0 + + spares = len(devices) - numActive + spec = partRequests.RaidRequestSpec(fsystem, format = format, + raidlevel = level, + raidmembers = raidvols, + raidminor = minor, + raidspares = spares, + mountpoint = mnt, + preexist = 1) + spec.size = spec.getActualSize(self, diskset) + self.addRequest(spec) + diskset.stopAllRaid() # now to read in pre-existing LVM stuff lvm.vgscan() lvm.vgactivate() - log("looking for logical volumes") vgs = [] if os.path.isdir("/proc/lvm/VGs"): vgs = os.listdir("/proc/lvm/VGs") - log("found vgs %s" %(vgs,)) for vg in vgs: - log("looking at VG: %s" %(vg,)) # first find the PE size f = open("/proc/lvm/VGs/%s/group" %(vg,), "r") lines = f.readlines() @@ -205,34 +243,32 @@ class Partitions: if lvsize is None: log("Unable to find LV size for %s/%s" % (vg, lv)) continue - lvsize = int(lvsize) / 1024.0 - - found = 0 - try: - os.mkdir("/tmp/testmnt") - except: - pass - for fs in fsset.getFStoTry("/dev/%s/%s" %(vg, lv)): - try: - isys.mount("/dev/%s/%s" % (vg, lv), - "/tmp/testmnt", fs, readOnly = 1) - isys.umount("/tmp/testmnt") - found = 1 - break - except SystemError, (errno, msg): - pass - if not found: + # size is listed as number of blocks, we want size in megs + lvsize = int(lvsize) / 2048.0 + + theDev = "/dev/%s/%s" %(vg, lv) + fs = partedUtils.sniffFilesystemType(theDev) + if fs is None: fsystem = fsset.fileSystemTypeGet("foreign") else: fsystem = fsset.fileSystemTypeGet(fs) + if fs == "swap": + mnt = "swap" + format = 1 + else: + mnt = None + format = 0 + spec = partRequests.LogicalVolumeRequestSpec(fsystem, - format = 0, + format = format, size = lvsize, volgroup = vgid, lvname = lv, + mountpoint = mnt, preexist = 1) self.addRequest(spec) + lvm.vgdeactivate() |