mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
text format fan info mismatch and module info check (#57009)
Signed-off-by: rohitthakur2590 <rohitthakur2590@outlook.com>
This commit is contained in:
parent
a56a9e1eeb
commit
b143918f30
1 changed files with 5 additions and 3 deletions
|
@ -876,7 +876,7 @@ class Legacy(FactsBase):
|
||||||
def parse_module(self, data):
|
def parse_module(self, data):
|
||||||
objects = list()
|
objects = list()
|
||||||
for line in data.splitlines():
|
for line in data.splitlines():
|
||||||
if line == '':
|
if line == '' or re.search(r'\b' + 'Sw' + r'\b', line):
|
||||||
break
|
break
|
||||||
if line[0].isdigit():
|
if line[0].isdigit():
|
||||||
obj = {}
|
obj = {}
|
||||||
|
@ -896,7 +896,7 @@ class Legacy(FactsBase):
|
||||||
if items:
|
if items:
|
||||||
obj['type'] = items[0]
|
obj['type'] = items[0]
|
||||||
obj['model'] = items[1]
|
obj['model'] = items[1]
|
||||||
obj['status'] = items[2]
|
obj['status'] = items[-1]
|
||||||
|
|
||||||
objects.append(obj)
|
objects.append(obj)
|
||||||
return objects
|
return objects
|
||||||
|
@ -910,9 +910,11 @@ class Legacy(FactsBase):
|
||||||
line = l.split()
|
line = l.split()
|
||||||
if len(line) > 1:
|
if len(line) > 1:
|
||||||
obj = {}
|
obj = {}
|
||||||
|
if re.search(r'Direction', data, re.M):
|
||||||
|
obj['direction'] = line[-2]
|
||||||
obj['name'] = line[0]
|
obj['name'] = line[0]
|
||||||
obj['model'] = line[1]
|
obj['model'] = line[1]
|
||||||
obj['hw_ver'] = line[-2]
|
obj['hw_ver'] = line[2]
|
||||||
obj['status'] = line[-1]
|
obj['status'] = line[-1]
|
||||||
objects.append(obj)
|
objects.append(obj)
|
||||||
return objects
|
return objects
|
||||||
|
|
Loading…
Reference in a new issue