add license_hostid fact nxos_facts (#51588)
Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
This commit is contained in:
parent
240d1a6afb
commit
9df6f152e1
1 changed files with 9 additions and 0 deletions
|
@ -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…
Reference in a new issue