fix: dvd-ram should be consider as virtual to be ignore
This commit is contained in:
parent
0b9087fa41
commit
f4d7796094
1 changed files with 16 additions and 17 deletions
|
|
@ -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),
|
||||||
|
|
|
||||||
Loading…
Add table
editor.link_modal.header
Reference in a new issue