From 74805210999f262a76c24a7723e28edf02b95f93 Mon Sep 17 00:00:00 2001 From: Aaron Klingaman Date: Mon, 23 Jan 2006 18:29:06 +0000 Subject: [PATCH] when checking for usable disks, also skip disks starting with dm- (device mapper, ie lvm) --- source/steps/CheckHardwareRequirements.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/steps/CheckHardwareRequirements.py b/source/steps/CheckHardwareRequirements.py index 1344161..bff14f2 100644 --- a/source/steps/CheckHardwareRequirements.py +++ b/source/steps/CheckHardwareRequirements.py @@ -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 -- 2.43.0