fix: dvd-ram should be consider as virtual to be ignore

This commit is contained in:
Cyril Levis 2022-08-23 08:55:02 +02:00
commit f4d7796094
No known key found for this signature in database
GPG key ID: 6DB88737C11F5A48

View file

@ -321,6 +321,7 @@ class Inventory():
'virtual' in product.lower() or \ 'virtual' in product.lower() or \
'logical' in product.lower() or \ 'logical' in product.lower() or \
'volume' in description.lower() or \ 'volume' in description.lower() or \
'dvd-ram' in description.lower() or \
description == 'SCSI Enclosure' or \ description == 'SCSI Enclosure' or \
(size is None and logicalname is None): (size is None and logicalname is None):
return True return True
@ -341,9 +342,7 @@ class Inventory():
for disk in self.lshw.get_hw_linux("storage"): for disk in self.lshw.get_hw_linux("storage"):
if self.is_virtual_disk(disk, raid_devices): if self.is_virtual_disk(disk, raid_devices):
continue continue
size = int(getattr(disk, "size", 0)) size = int(getattr(disk, "size", 0)) / 1073741824
if size > 0:
size /= 1073741824
d = { d = {
"name": "", "name": "",
'Size': '{} GB'.format(size), 'Size': '{} GB'.format(size),