Merge pull request #239 from Solvik/fix/inventory-disk-issue

Inventory disk issue
This commit is contained in:
Cyril Levis 2022-08-25 08:43:36 +02:00 committed by GitHub
commit 042a6fcf35
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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