when checking for usable disks, also skip disks starting with dm-
authorAaron Klingaman <alk@cs.princeton.edu>
Mon, 23 Jan 2006 18:29:06 +0000 (18:29 +0000)
committerAaron Klingaman <alk@cs.princeton.edu>
Mon, 23 Jan 2006 18:29:06 +0000 (18:29 +0000)
(device mapper, ie lvm)

source/steps/CheckHardwareRequirements.py

index 1344161..bff14f2 100644 (file)
@@ -194,8 +194,8 @@ def Run( vars, log ):
         (major,minor,blocks,gb_size,readonly)= install_devices[device]
         
         # if the device string starts with
-        # planetlab, ignore it (could be old lvm setup)
-        if device[:14] == "/dev/planetlab":
+        # planetlab or dm- (device mapper), ignore it (could be old lvm setup)
+        if device[:14] == "/dev/planetlab" or device[:8] == "/dev/dm-":
             del install_devices[device]
             continue