From: Barış Metin Date: Fri, 14 Jan 2011 14:37:07 +0000 (+0100) Subject: again check for virtio disks (not used now but it doesn't hurt to have them here) X-Git-Tag: bootmanager-4.3-21~1 X-Git-Url: http://git.onelab.eu/?p=bootmanager.git;a=commitdiff_plain;h=b4e653e0b89780332aac00afdbde3590dba17c4e again check for virtio disks (not used now but it doesn't hurt to have them here) --- diff --git a/source/systeminfo.py b/source/systeminfo.py index 94d9f78..78fc2b6 100755 --- a/source/systeminfo.py +++ b/source/systeminfo.py @@ -117,7 +117,8 @@ def get_block_device_list(vars = {}, log = sys.stderr): # table with valid scsi/sata/ide/raid block device names valid_blk_names = {} # add in valid sd and hd block device names - for blk_prefix in ('sd','hd'): + # also check for vd (virtio devices used with kvm) + for blk_prefix in ('sd','hd','vd'): for blk_num in map ( \ lambda x: chr(x), range(ord('a'),ord('z')+1)): devicename="%s%c" % (blk_prefix, blk_num)