Handle absent manufacturer field correctly

The section can be absent on some BIOSes. Agent must not fail in this
case.

Change-Id: I931e4c7f3549fc82663f6a6ccfb51b5c4e912fe7
Closes-Bug: #1643192
This commit is contained in:
Georgy Kibardin 2016-11-21 15:30:19 +03:00
parent af1e5da094
commit ac5c37be5c
1 changed files with 2 additions and 2 deletions

4
agent
View File

@ -1045,10 +1045,10 @@ class NodeAgent
def _manufacturer
if _is_virtualbox
@facter['productname']
elsif (@facter['manufacturer'].upcase != 'QEMU' && @facter['is_virtual'])
elsif (@facter.fetch('manufacturer', '').upcase != 'QEMU' && @facter['is_virtual'])
@facter['virtual']
else
@facter['manufacturer']
@facter.fetch('manufacturer', '')
end
end