mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
nxos_facts fix NameError (#48981)
Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
This commit is contained in:
parent
12a573a7db
commit
8796085569
1 changed files with 9 additions and 3 deletions
|
@ -822,10 +822,16 @@ class Legacy(FactsBase):
|
||||||
|
|
||||||
def parse_structured_power_supply_info(self, data):
|
def parse_structured_power_supply_info(self, data):
|
||||||
if data.get('powersup').get('TABLE_psinfo_n3k'):
|
if data.get('powersup').get('TABLE_psinfo_n3k'):
|
||||||
data = data['powersup']['TABLE_psinfo_n3k']['ROW_psinfo_n3k']
|
fact = data['powersup']['TABLE_psinfo_n3k']['ROW_psinfo_n3k']
|
||||||
else:
|
else:
|
||||||
data = data['powersup']['TABLE_psinfo']['ROW_psinfo']
|
if isinstance(data['powersup']['TABLE_psinfo'], list):
|
||||||
objects = list(self.transform_iterable(data, self.POWERSUP_MAP))
|
fact = []
|
||||||
|
for i in data['powersup']['TABLE_psinfo']:
|
||||||
|
fact.append(i['ROW_psinfo'])
|
||||||
|
else:
|
||||||
|
fact = data['powersup']['TABLE_psinfo']['ROW_psinfo']
|
||||||
|
|
||||||
|
objects = list(self.transform_iterable(fact, self.POWERSUP_MAP))
|
||||||
return objects
|
return objects
|
||||||
|
|
||||||
def parse_hostname(self, data):
|
def parse_hostname(self, data):
|
||||||
|
|
Loading…
Reference in a new issue