Nxos facts fix backport (#57150)

* text format fan info mismatch and module info check (#57009)

Signed-off-by: rohitthakur2590 <rohitthakur2590@outlook.com>
(cherry picked from commit b143918f30)

* nxos facts fix backport to stable 2.8

Signed-off-by: rohitthakur2590 <rohitthakur2590@outlook.com>
pull/57177/head
Rohit 7 years ago committed by Toshio Kuratomi
parent 0365d73102
commit 77e50980b5

@ -0,0 +1,2 @@
bugfixes:
- nxos_facts fix <https://github.com/ansible/ansible/pull/57009>

@ -881,7 +881,7 @@ class Legacy(FactsBase):
def parse_module(self, data):
objects = list()
for line in data.splitlines():
if line == '':
if line == '' or re.search(r'\b' + 'Sw' + r'\b', line):
break
if line[0].isdigit():
obj = {}
@ -901,7 +901,7 @@ class Legacy(FactsBase):
if items:
obj['type'] = items[0]
obj['model'] = items[1]
obj['status'] = items[2]
obj['status'] = items[-1]
objects.append(obj)
return objects
@ -915,9 +915,11 @@ class Legacy(FactsBase):
line = l.split()
if len(line) > 1:
obj = {}
if re.search(r'Direction', data, re.M):
obj['direction'] = line[-2]
obj['name'] = line[0]
obj['model'] = line[1]
obj['hw_ver'] = line[-2]
obj['hw_ver'] = line[2]
obj['status'] = line[-1]
objects.append(obj)
return objects

Loading…
Cancel
Save