add license_hostid fact nxos_facts (#51588)

Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
pull/51684/head
Trishna Guha 6 years ago committed by GitHub
parent 240d1a6afb
commit 9df6f152e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -261,6 +261,10 @@ class Default(FactsBase):
self.facts['image'] = self.parse_image(data)
self.facts['hostname'] = self.parse_hostname(data)
data = self.run('show license host-id')
if data:
self.facts['license_hostid'] = self.parse_license_hostid(data)
def parse_version(self, data):
match = re.search(r'\s+system:\s+version\s*(\S+)', data, re.M)
if match:
@ -294,6 +298,11 @@ class Default(FactsBase):
if match:
return match.group(1)
def parse_license_hostid(self, data):
match = re.search(r'License hostid: VDH=(.+)$', data, re.M)
if match:
return match.group(1)
class Config(FactsBase):

Loading…
Cancel
Save