Refactor nxos_facts to support resource module (#58705)
Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
This commit is contained in:
parent
a6b7d0d00b
commit
5c5d9ad669
11 changed files with 1026 additions and 827 deletions
24
lib/ansible/module_utils/network/nxos/argspec/facts/facts.py
Normal file
24
lib/ansible/module_utils/network/nxos/argspec/facts/facts.py
Normal file
|
@ -0,0 +1,24 @@
|
|||
#
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright 2019 Red Hat
|
||||
# GNU General Public License v3.0+
|
||||
# (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
"""
|
||||
The arg spec for the nxos facts module.
|
||||
"""
|
||||
CHOICES = [
|
||||
'all',
|
||||
]
|
||||
|
||||
|
||||
class FactsArgs(object):
|
||||
""" The arg spec for the nxos facts module
|
||||
"""
|
||||
|
||||
def __init__(self, **kwargs):
|
||||
pass
|
||||
|
||||
argument_spec = {
|
||||
'gather_subset': dict(default=['!config'], type='list'),
|
||||
'gather_network_resources': dict(choices=CHOICES, type='list'),
|
||||
}
|
0
lib/ansible/module_utils/network/nxos/config/__init__.py
Normal file
0
lib/ansible/module_utils/network/nxos/config/__init__.py
Normal file
0
lib/ansible/module_utils/network/nxos/facts/__init__.py
Normal file
0
lib/ansible/module_utils/network/nxos/facts/__init__.py
Normal file
53
lib/ansible/module_utils/network/nxos/facts/facts.py
Normal file
53
lib/ansible/module_utils/network/nxos/facts/facts.py
Normal file
|
@ -0,0 +1,53 @@
|
|||
#
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright 2019 Red Hat
|
||||
# GNU General Public License v3.0+
|
||||
# (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
"""
|
||||
The facts class for nxos
|
||||
this file validates each subset of facts and selectively
|
||||
calls the appropriate facts gathering function
|
||||
"""
|
||||
|
||||
from ansible.module_utils.network.nxos.argspec.facts.facts import FactsArgs
|
||||
from ansible.module_utils.network.common.facts.facts import FactsBase
|
||||
from ansible.module_utils.network.nxos.facts.legacy.base import Default, Legacy, Hardware, Config, Interfaces, Features
|
||||
|
||||
FACT_LEGACY_SUBSETS = dict(
|
||||
default=Default,
|
||||
legacy=Legacy,
|
||||
hardware=Hardware,
|
||||
interfaces=Interfaces,
|
||||
config=Config,
|
||||
features=Features,
|
||||
)
|
||||
FACT_RESOURCE_SUBSETS = dict(
|
||||
)
|
||||
|
||||
|
||||
class Facts(FactsBase):
|
||||
""" The fact class for nxos
|
||||
"""
|
||||
|
||||
VALID_LEGACY_GATHER_SUBSETS = frozenset(FACT_LEGACY_SUBSETS.keys())
|
||||
VALID_RESOURCE_SUBSETS = frozenset(FACT_RESOURCE_SUBSETS.keys())
|
||||
|
||||
def __init__(self, module):
|
||||
super(Facts, self).__init__(module)
|
||||
|
||||
def get_facts(self, legacy_facts_type=None, resource_facts_type=None, data=None):
|
||||
""" Collect the facts for nxos
|
||||
:param legacy_facts_type: List of legacy facts types
|
||||
:param resource_facts_type: List of resource fact types
|
||||
:param data: previously collected conf
|
||||
:rtype: dict
|
||||
:return: the facts gathered
|
||||
"""
|
||||
netres_choices = FactsArgs.argument_spec['gather_network_resources'].get('choices', [])
|
||||
if self.VALID_RESOURCE_SUBSETS:
|
||||
self.get_network_resources_facts(netres_choices, FACT_RESOURCE_SUBSETS, resource_facts_type, data)
|
||||
|
||||
if self.VALID_LEGACY_GATHER_SUBSETS:
|
||||
self.get_network_legacy_facts(FACT_LEGACY_SUBSETS, legacy_facts_type)
|
||||
|
||||
return self.ansible_facts, self._warnings
|
755
lib/ansible/module_utils/network/nxos/facts/legacy/base.py
Normal file
755
lib/ansible/module_utils/network/nxos/facts/legacy/base.py
Normal file
|
@ -0,0 +1,755 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Copyright 2019 Red Hat
|
||||
# GNU General Public License v3.0+
|
||||
# (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
|
||||
import platform
|
||||
import re
|
||||
|
||||
from ansible.module_utils.network.nxos.nxos import run_commands, get_config, get_capabilities
|
||||
from ansible.module_utils.network.nxos.utils.utils import get_interface_type, normalize_interface
|
||||
from ansible.module_utils.six import iteritems
|
||||
|
||||
|
||||
g_config = None
|
||||
|
||||
|
||||
class FactsBase(object):
|
||||
|
||||
def __init__(self, module):
|
||||
self.module = module
|
||||
self.warnings = list()
|
||||
self.facts = dict()
|
||||
self.capabilities = get_capabilities(self.module)
|
||||
|
||||
def populate(self):
|
||||
pass
|
||||
|
||||
def run(self, command, output='text'):
|
||||
command_string = command
|
||||
command = {
|
||||
'command': command,
|
||||
'output': output
|
||||
}
|
||||
resp = run_commands(self.module, [command], check_rc='retry_json')
|
||||
try:
|
||||
return resp[0]
|
||||
except IndexError:
|
||||
self.warnings.append('command %s failed, facts for this command will not be populated' % command_string)
|
||||
return None
|
||||
|
||||
def get_config(self):
|
||||
global g_config
|
||||
if not g_config:
|
||||
g_config = get_config(self.module)
|
||||
return g_config
|
||||
|
||||
def transform_dict(self, data, keymap):
|
||||
transform = dict()
|
||||
for key, fact in keymap:
|
||||
if key in data:
|
||||
transform[fact] = data[key]
|
||||
return transform
|
||||
|
||||
def transform_iterable(self, iterable, keymap):
|
||||
for item in iterable:
|
||||
yield self.transform_dict(item, keymap)
|
||||
|
||||
|
||||
class Default(FactsBase):
|
||||
|
||||
def populate(self):
|
||||
data = None
|
||||
data = self.run('show version')
|
||||
|
||||
if data:
|
||||
self.facts['serialnum'] = self.parse_serialnum(data)
|
||||
|
||||
data = self.run('show license host-id')
|
||||
if data:
|
||||
self.facts['license_hostid'] = self.parse_license_hostid(data)
|
||||
|
||||
self.facts.update(self.platform_facts())
|
||||
|
||||
def parse_serialnum(self, data):
|
||||
match = re.search(r'Processor Board ID\s*(\S+)', data, re.M)
|
||||
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)
|
||||
|
||||
def platform_facts(self):
|
||||
platform_facts = {}
|
||||
|
||||
resp = self.capabilities
|
||||
device_info = resp['device_info']
|
||||
|
||||
platform_facts['system'] = device_info['network_os']
|
||||
|
||||
for item in ('model', 'image', 'version', 'platform', 'hostname'):
|
||||
val = device_info.get('network_os_%s' % item)
|
||||
if val:
|
||||
platform_facts[item] = val
|
||||
|
||||
platform_facts['api'] = resp['network_api']
|
||||
platform_facts['python_version'] = platform.python_version()
|
||||
|
||||
return platform_facts
|
||||
|
||||
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):
|
||||
|
||||
def populate(self):
|
||||
super(Config, self).populate()
|
||||
self.facts['config'] = self.get_config()
|
||||
|
||||
|
||||
class Features(FactsBase):
|
||||
|
||||
def populate(self):
|
||||
super(Features, self).populate()
|
||||
data = self.get_config()
|
||||
|
||||
if data:
|
||||
features = []
|
||||
for line in data.splitlines():
|
||||
if line.startswith('feature'):
|
||||
features.append(line.replace('feature', '').strip())
|
||||
|
||||
self.facts['features_enabled'] = features
|
||||
|
||||
|
||||
class Hardware(FactsBase):
|
||||
|
||||
def populate(self):
|
||||
data = self.run('dir')
|
||||
if data:
|
||||
self.facts['filesystems'] = self.parse_filesystems(data)
|
||||
|
||||
data = None
|
||||
data = self.run('show system resources', output='json')
|
||||
|
||||
if data:
|
||||
if isinstance(data, dict):
|
||||
self.facts['memtotal_mb'] = int(data['memory_usage_total']) / 1024
|
||||
self.facts['memfree_mb'] = int(data['memory_usage_free']) / 1024
|
||||
else:
|
||||
self.facts['memtotal_mb'] = self.parse_memtotal_mb(data)
|
||||
self.facts['memfree_mb'] = self.parse_memfree_mb(data)
|
||||
|
||||
def parse_filesystems(self, data):
|
||||
return re.findall(r'^Usage for (\S+)//', data, re.M)
|
||||
|
||||
def parse_memtotal_mb(self, data):
|
||||
match = re.search(r'(\S+)K(\s+|)total', data, re.M)
|
||||
if match:
|
||||
memtotal = match.group(1)
|
||||
return int(memtotal) / 1024
|
||||
|
||||
def parse_memfree_mb(self, data):
|
||||
match = re.search(r'(\S+)K(\s+|)free', data, re.M)
|
||||
if match:
|
||||
memfree = match.group(1)
|
||||
return int(memfree) / 1024
|
||||
|
||||
|
||||
class Interfaces(FactsBase):
|
||||
|
||||
INTERFACE_MAP = frozenset([
|
||||
('state', 'state'),
|
||||
('desc', 'description'),
|
||||
('eth_bw', 'bandwidth'),
|
||||
('eth_duplex', 'duplex'),
|
||||
('eth_speed', 'speed'),
|
||||
('eth_mode', 'mode'),
|
||||
('eth_hw_addr', 'macaddress'),
|
||||
('eth_mtu', 'mtu'),
|
||||
('eth_hw_desc', 'type')
|
||||
])
|
||||
|
||||
INTERFACE_SVI_MAP = frozenset([
|
||||
('svi_line_proto', 'state'),
|
||||
('svi_bw', 'bandwidth'),
|
||||
('svi_mac', 'macaddress'),
|
||||
('svi_mtu', 'mtu'),
|
||||
('type', 'type')
|
||||
])
|
||||
|
||||
INTERFACE_IPV4_MAP = frozenset([
|
||||
('eth_ip_addr', 'address'),
|
||||
('eth_ip_mask', 'masklen')
|
||||
])
|
||||
|
||||
INTERFACE_SVI_IPV4_MAP = frozenset([
|
||||
('svi_ip_addr', 'address'),
|
||||
('svi_ip_mask', 'masklen')
|
||||
])
|
||||
|
||||
INTERFACE_IPV6_MAP = frozenset([
|
||||
('addr', 'address'),
|
||||
('prefix', 'subnet')
|
||||
])
|
||||
|
||||
def ipv6_structure_op_supported(self):
|
||||
data = self.capabilities
|
||||
if data:
|
||||
nxos_os_version = data['device_info']['network_os_version']
|
||||
unsupported_versions = ['I2', 'F1', 'A8']
|
||||
for ver in unsupported_versions:
|
||||
if ver in nxos_os_version:
|
||||
return False
|
||||
return True
|
||||
|
||||
def populate(self):
|
||||
self.facts['all_ipv4_addresses'] = list()
|
||||
self.facts['all_ipv6_addresses'] = list()
|
||||
self.facts['neighbors'] = {}
|
||||
data = None
|
||||
|
||||
data = self.run('show interface', output='json')
|
||||
|
||||
if data:
|
||||
if isinstance(data, dict):
|
||||
self.facts['interfaces'] = self.populate_structured_interfaces(data)
|
||||
else:
|
||||
interfaces = self.parse_interfaces(data)
|
||||
self.facts['interfaces'] = self.populate_interfaces(interfaces)
|
||||
|
||||
if self.ipv6_structure_op_supported():
|
||||
data = self.run('show ipv6 interface', output='json')
|
||||
else:
|
||||
data = None
|
||||
if data:
|
||||
if isinstance(data, dict):
|
||||
self.populate_structured_ipv6_interfaces(data)
|
||||
else:
|
||||
interfaces = self.parse_interfaces(data)
|
||||
self.populate_ipv6_interfaces(interfaces)
|
||||
|
||||
data = self.run('show lldp neighbors', output='json')
|
||||
if data:
|
||||
if isinstance(data, dict):
|
||||
self.facts['neighbors'].update(self.populate_structured_neighbors_lldp(data))
|
||||
else:
|
||||
self.facts['neighbors'].update(self.populate_neighbors(data))
|
||||
|
||||
data = self.run('show cdp neighbors detail', output='json')
|
||||
if data:
|
||||
if isinstance(data, dict):
|
||||
self.facts['neighbors'].update(self.populate_structured_neighbors_cdp(data))
|
||||
else:
|
||||
self.facts['neighbors'].update(self.populate_neighbors_cdp(data))
|
||||
|
||||
self.facts['neighbors'].pop(None, None) # Remove null key
|
||||
|
||||
def populate_structured_interfaces(self, data):
|
||||
interfaces = dict()
|
||||
for item in data['TABLE_interface']['ROW_interface']:
|
||||
name = item['interface']
|
||||
|
||||
intf = dict()
|
||||
if 'type' in item:
|
||||
intf.update(self.transform_dict(item, self.INTERFACE_SVI_MAP))
|
||||
else:
|
||||
intf.update(self.transform_dict(item, self.INTERFACE_MAP))
|
||||
|
||||
if 'eth_ip_addr' in item:
|
||||
intf['ipv4'] = self.transform_dict(item, self.INTERFACE_IPV4_MAP)
|
||||
self.facts['all_ipv4_addresses'].append(item['eth_ip_addr'])
|
||||
|
||||
if 'svi_ip_addr' in item:
|
||||
intf['ipv4'] = self.transform_dict(item, self.INTERFACE_SVI_IPV4_MAP)
|
||||
self.facts['all_ipv4_addresses'].append(item['svi_ip_addr'])
|
||||
|
||||
interfaces[name] = intf
|
||||
|
||||
return interfaces
|
||||
|
||||
def populate_structured_ipv6_interfaces(self, data):
|
||||
try:
|
||||
data = data['TABLE_intf']
|
||||
if data:
|
||||
if isinstance(data, dict):
|
||||
data = [data]
|
||||
for item in data:
|
||||
name = item['ROW_intf']['intf-name']
|
||||
intf = self.facts['interfaces'][name]
|
||||
intf['ipv6'] = self.transform_dict(item, self.INTERFACE_IPV6_MAP)
|
||||
try:
|
||||
addr = item['ROW_intf']['addr']
|
||||
except KeyError:
|
||||
addr = item['ROW_intf']['TABLE_addr']['ROW_addr']['addr']
|
||||
self.facts['all_ipv6_addresses'].append(addr)
|
||||
else:
|
||||
return ""
|
||||
except TypeError:
|
||||
return ""
|
||||
|
||||
def populate_structured_neighbors_lldp(self, data):
|
||||
objects = dict()
|
||||
data = data['TABLE_nbor']['ROW_nbor']
|
||||
|
||||
if isinstance(data, dict):
|
||||
data = [data]
|
||||
|
||||
for item in data:
|
||||
local_intf = normalize_interface(item['l_port_id'])
|
||||
objects[local_intf] = list()
|
||||
nbor = dict()
|
||||
nbor['port'] = item['port_id']
|
||||
nbor['host'] = nbor['sysname'] = item['chassis_id']
|
||||
objects[local_intf].append(nbor)
|
||||
|
||||
return objects
|
||||
|
||||
def populate_structured_neighbors_cdp(self, data):
|
||||
objects = dict()
|
||||
data = data['TABLE_cdp_neighbor_detail_info']['ROW_cdp_neighbor_detail_info']
|
||||
|
||||
if isinstance(data, dict):
|
||||
data = [data]
|
||||
|
||||
for item in data:
|
||||
local_intf = item['intf_id']
|
||||
objects[local_intf] = list()
|
||||
nbor = dict()
|
||||
nbor['port'] = item['port_id']
|
||||
nbor['host'] = nbor['sysname'] = item['device_id']
|
||||
objects[local_intf].append(nbor)
|
||||
|
||||
return objects
|
||||
|
||||
def parse_interfaces(self, data):
|
||||
parsed = dict()
|
||||
key = ''
|
||||
for line in data.split('\n'):
|
||||
if len(line) == 0:
|
||||
continue
|
||||
elif line.startswith('admin') or line[0] == ' ':
|
||||
parsed[key] += '\n%s' % line
|
||||
else:
|
||||
match = re.match(r'^(\S+)', line)
|
||||
if match:
|
||||
key = match.group(1)
|
||||
if not key.startswith('admin') or not key.startswith('IPv6 Interface'):
|
||||
parsed[key] = line
|
||||
return parsed
|
||||
|
||||
def populate_interfaces(self, interfaces):
|
||||
facts = dict()
|
||||
for key, value in iteritems(interfaces):
|
||||
intf = dict()
|
||||
if get_interface_type(key) == 'svi':
|
||||
intf['state'] = self.parse_state(key, value, intf_type='svi')
|
||||
intf['macaddress'] = self.parse_macaddress(value, intf_type='svi')
|
||||
intf['mtu'] = self.parse_mtu(value, intf_type='svi')
|
||||
intf['bandwidth'] = self.parse_bandwidth(value, intf_type='svi')
|
||||
intf['type'] = self.parse_type(value, intf_type='svi')
|
||||
if 'Internet Address' in value:
|
||||
intf['ipv4'] = self.parse_ipv4_address(value, intf_type='svi')
|
||||
facts[key] = intf
|
||||
else:
|
||||
intf['state'] = self.parse_state(key, value)
|
||||
intf['description'] = self.parse_description(value)
|
||||
intf['macaddress'] = self.parse_macaddress(value)
|
||||
intf['mode'] = self.parse_mode(value)
|
||||
intf['mtu'] = self.parse_mtu(value)
|
||||
intf['bandwidth'] = self.parse_bandwidth(value)
|
||||
intf['duplex'] = self.parse_duplex(value)
|
||||
intf['speed'] = self.parse_speed(value)
|
||||
intf['type'] = self.parse_type(value)
|
||||
if 'Internet Address' in value:
|
||||
intf['ipv4'] = self.parse_ipv4_address(value)
|
||||
facts[key] = intf
|
||||
|
||||
return facts
|
||||
|
||||
def parse_state(self, key, value, intf_type='ethernet'):
|
||||
match = None
|
||||
if intf_type == 'svi':
|
||||
match = re.search(r'line protocol is\s*(\S+)', value, re.M)
|
||||
else:
|
||||
match = re.search(r'%s is\s*(\S+)' % key, value, re.M)
|
||||
|
||||
if match:
|
||||
return match.group(1)
|
||||
|
||||
def parse_macaddress(self, value, intf_type='ethernet'):
|
||||
match = None
|
||||
if intf_type == 'svi':
|
||||
match = re.search(r'address is\s*(\S+)', value, re.M)
|
||||
else:
|
||||
match = re.search(r'address:\s*(\S+)', value, re.M)
|
||||
|
||||
if match:
|
||||
return match.group(1)
|
||||
|
||||
def parse_mtu(self, value, intf_type='ethernet'):
|
||||
match = re.search(r'MTU\s*(\S+)', value, re.M)
|
||||
if match:
|
||||
return match.group(1)
|
||||
|
||||
def parse_bandwidth(self, value, intf_type='ethernet'):
|
||||
match = re.search(r'BW\s*(\S+)', value, re.M)
|
||||
if match:
|
||||
return match.group(1)
|
||||
|
||||
def parse_type(self, value, intf_type='ethernet'):
|
||||
match = None
|
||||
if intf_type == 'svi':
|
||||
match = re.search(r'Hardware is\s*(\S+)', value, re.M)
|
||||
else:
|
||||
match = re.search(r'Hardware:\s*(.+),', value, re.M)
|
||||
|
||||
if match:
|
||||
return match.group(1)
|
||||
|
||||
def parse_description(self, value, intf_type='ethernet'):
|
||||
match = re.search(r'Description: (.+)$', value, re.M)
|
||||
if match:
|
||||
return match.group(1)
|
||||
|
||||
def parse_mode(self, value, intf_type='ethernet'):
|
||||
match = re.search(r'Port mode is (\S+)', value, re.M)
|
||||
if match:
|
||||
return match.group(1)
|
||||
|
||||
def parse_duplex(self, value, intf_type='ethernet'):
|
||||
match = re.search(r'(\S+)-duplex', value, re.M)
|
||||
if match:
|
||||
return match.group(1)
|
||||
|
||||
def parse_speed(self, value, intf_type='ethernet'):
|
||||
match = re.search(r'duplex, (.+)$', value, re.M)
|
||||
if match:
|
||||
return match.group(1)
|
||||
|
||||
def parse_ipv4_address(self, value, intf_type='ethernet'):
|
||||
ipv4 = {}
|
||||
match = re.search(r'Internet Address is (.+)$', value, re.M)
|
||||
if match:
|
||||
address = match.group(1)
|
||||
addr = address.split('/')[0]
|
||||
ipv4['address'] = address.split('/')[0]
|
||||
ipv4['masklen'] = address.split('/')[1]
|
||||
self.facts['all_ipv4_addresses'].append(addr)
|
||||
return ipv4
|
||||
|
||||
def populate_neighbors(self, data):
|
||||
objects = dict()
|
||||
# if there are no neighbors the show command returns
|
||||
# ERROR: No neighbour information
|
||||
if data.startswith('ERROR'):
|
||||
return dict()
|
||||
|
||||
regex = re.compile(r'(\S+)\s+(\S+)\s+\d+\s+\w+\s+(\S+)')
|
||||
|
||||
for item in data.split('\n')[4:-1]:
|
||||
match = regex.match(item)
|
||||
if match:
|
||||
nbor = dict()
|
||||
nbor['host'] = nbor['sysname'] = match.group(1)
|
||||
nbor['port'] = match.group(3)
|
||||
local_intf = normalize_interface(match.group(2))
|
||||
if local_intf not in objects:
|
||||
objects[local_intf] = []
|
||||
objects[local_intf].append(nbor)
|
||||
|
||||
return objects
|
||||
|
||||
def populate_neighbors_cdp(self, data):
|
||||
facts = dict()
|
||||
|
||||
for item in data.split('----------------------------------------'):
|
||||
if item == '':
|
||||
continue
|
||||
local_intf = self.parse_lldp_intf(item)
|
||||
if local_intf not in facts:
|
||||
facts[local_intf] = list()
|
||||
|
||||
fact = dict()
|
||||
fact['port'] = self.parse_lldp_port(item)
|
||||
fact['sysname'] = self.parse_lldp_sysname(item)
|
||||
facts[local_intf].append(fact)
|
||||
|
||||
return facts
|
||||
|
||||
def parse_lldp_intf(self, data):
|
||||
match = re.search(r'Interface:\s*(\S+)', data, re.M)
|
||||
if match:
|
||||
return match.group(1).strip(',')
|
||||
|
||||
def parse_lldp_port(self, data):
|
||||
match = re.search(r'Port ID \(outgoing port\):\s*(\S+)', data, re.M)
|
||||
if match:
|
||||
return match.group(1)
|
||||
|
||||
def parse_lldp_sysname(self, data):
|
||||
match = re.search(r'Device ID:(.+)$', data, re.M)
|
||||
if match:
|
||||
return match.group(1)
|
||||
|
||||
def populate_ipv6_interfaces(self, interfaces):
|
||||
facts = dict()
|
||||
for key, value in iteritems(interfaces):
|
||||
intf = dict()
|
||||
intf['ipv6'] = self.parse_ipv6_address(value)
|
||||
facts[key] = intf
|
||||
|
||||
def parse_ipv6_address(self, value):
|
||||
ipv6 = {}
|
||||
match_addr = re.search(r'IPv6 address:\s*(\S+)', value, re.M)
|
||||
if match_addr:
|
||||
addr = match_addr.group(1)
|
||||
ipv6['address'] = addr
|
||||
self.facts['all_ipv6_addresses'].append(addr)
|
||||
match_subnet = re.search(r'IPv6 subnet:\s*(\S+)', value, re.M)
|
||||
if match_subnet:
|
||||
ipv6['subnet'] = match_subnet.group(1)
|
||||
|
||||
return ipv6
|
||||
|
||||
|
||||
class Legacy(FactsBase):
|
||||
# facts from nxos_facts 2.1
|
||||
|
||||
VERSION_MAP = frozenset([
|
||||
('host_name', '_hostname'),
|
||||
('kickstart_ver_str', '_os'),
|
||||
('chassis_id', '_platform')
|
||||
])
|
||||
|
||||
MODULE_MAP = frozenset([
|
||||
('model', 'model'),
|
||||
('modtype', 'type'),
|
||||
('ports', 'ports'),
|
||||
('status', 'status')
|
||||
])
|
||||
|
||||
FAN_MAP = frozenset([
|
||||
('fanname', 'name'),
|
||||
('fanmodel', 'model'),
|
||||
('fanhwver', 'hw_ver'),
|
||||
('fandir', 'direction'),
|
||||
('fanstatus', 'status')
|
||||
])
|
||||
|
||||
POWERSUP_MAP = frozenset([
|
||||
('psmodel', 'model'),
|
||||
('psnum', 'number'),
|
||||
('ps_status', 'status'),
|
||||
('ps_status_3k', 'status'),
|
||||
('actual_out', 'actual_output'),
|
||||
('actual_in', 'actual_in'),
|
||||
('total_capa', 'total_capacity'),
|
||||
('input_type', 'input_type'),
|
||||
('watts', 'watts'),
|
||||
('amps', 'amps')
|
||||
])
|
||||
|
||||
def populate(self):
|
||||
data = None
|
||||
|
||||
data = self.run('show version', output='json')
|
||||
if data:
|
||||
if isinstance(data, dict):
|
||||
self.facts.update(self.transform_dict(data, self.VERSION_MAP))
|
||||
else:
|
||||
self.facts['_hostname'] = self.parse_hostname(data)
|
||||
self.facts['_os'] = self.parse_os(data)
|
||||
self.facts['_platform'] = self.parse_platform(data)
|
||||
|
||||
data = self.run('show interface', output='json')
|
||||
if data:
|
||||
if isinstance(data, dict):
|
||||
self.facts['_interfaces_list'] = self.parse_structured_interfaces(data)
|
||||
else:
|
||||
self.facts['_interfaces_list'] = self.parse_interfaces(data)
|
||||
|
||||
data = self.run('show vlan brief', output='json')
|
||||
if data:
|
||||
if isinstance(data, dict):
|
||||
self.facts['_vlan_list'] = self.parse_structured_vlans(data)
|
||||
else:
|
||||
self.facts['_vlan_list'] = self.parse_vlans(data)
|
||||
|
||||
data = self.run('show module', output='json')
|
||||
if data:
|
||||
if isinstance(data, dict):
|
||||
self.facts['_module'] = self.parse_structured_module(data)
|
||||
else:
|
||||
self.facts['_module'] = self.parse_module(data)
|
||||
|
||||
data = self.run('show environment fan', output='json')
|
||||
if data:
|
||||
if isinstance(data, dict):
|
||||
self.facts['_fan_info'] = self.parse_structured_fan_info(data)
|
||||
else:
|
||||
self.facts['_fan_info'] = self.parse_fan_info(data)
|
||||
|
||||
data = self.run('show environment power', output='json')
|
||||
if data:
|
||||
if isinstance(data, dict):
|
||||
self.facts['_power_supply_info'] = self.parse_structured_power_supply_info(data)
|
||||
else:
|
||||
self.facts['_power_supply_info'] = self.parse_power_supply_info(data)
|
||||
|
||||
def parse_structured_interfaces(self, data):
|
||||
objects = list()
|
||||
for item in data['TABLE_interface']['ROW_interface']:
|
||||
objects.append(item['interface'])
|
||||
return objects
|
||||
|
||||
def parse_structured_vlans(self, data):
|
||||
objects = list()
|
||||
data = data['TABLE_vlanbriefxbrief']['ROW_vlanbriefxbrief']
|
||||
if isinstance(data, dict):
|
||||
objects.append(data['vlanshowbr-vlanid-utf'])
|
||||
elif isinstance(data, list):
|
||||
for item in data:
|
||||
objects.append(item['vlanshowbr-vlanid-utf'])
|
||||
return objects
|
||||
|
||||
def parse_structured_module(self, data):
|
||||
data = data['TABLE_modinfo']['ROW_modinfo']
|
||||
if isinstance(data, dict):
|
||||
data = [data]
|
||||
objects = list(self.transform_iterable(data, self.MODULE_MAP))
|
||||
return objects
|
||||
|
||||
def parse_structured_fan_info(self, data):
|
||||
objects = list()
|
||||
if data.get('fandetails'):
|
||||
data = data['fandetails']['TABLE_faninfo']['ROW_faninfo']
|
||||
elif data.get('fandetails_3k'):
|
||||
data = data['fandetails_3k']['TABLE_faninfo']['ROW_faninfo']
|
||||
else:
|
||||
return objects
|
||||
objects = list(self.transform_iterable(data, self.FAN_MAP))
|
||||
return objects
|
||||
|
||||
def parse_structured_power_supply_info(self, data):
|
||||
if data.get('powersup').get('TABLE_psinfo_n3k'):
|
||||
fact = data['powersup']['TABLE_psinfo_n3k']['ROW_psinfo_n3k']
|
||||
else:
|
||||
if isinstance(data['powersup']['TABLE_psinfo'], list):
|
||||
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
|
||||
|
||||
def parse_hostname(self, data):
|
||||
match = re.search(r'\s+Device name:\s+(\S+)', data, re.M)
|
||||
if match:
|
||||
return match.group(1)
|
||||
|
||||
def parse_os(self, data):
|
||||
match = re.search(r'\s+system:\s+version\s*(\S+)', data, re.M)
|
||||
if match:
|
||||
return match.group(1)
|
||||
else:
|
||||
match = re.search(r'\s+kickstart:\s+version\s*(\S+)', data, re.M)
|
||||
if match:
|
||||
return match.group(1)
|
||||
|
||||
def parse_platform(self, data):
|
||||
match = re.search(r'Hardware\n\s+cisco\s+(\S+\s+\S+)', data, re.M)
|
||||
if match:
|
||||
return match.group(1)
|
||||
|
||||
def parse_interfaces(self, data):
|
||||
objects = list()
|
||||
for line in data.split('\n'):
|
||||
if len(line) == 0:
|
||||
continue
|
||||
elif line.startswith('admin') or line[0] == ' ':
|
||||
continue
|
||||
else:
|
||||
match = re.match(r'^(\S+)', line)
|
||||
if match:
|
||||
intf = match.group(1)
|
||||
if get_interface_type(intf) != 'unknown':
|
||||
objects.append(intf)
|
||||
return objects
|
||||
|
||||
def parse_vlans(self, data):
|
||||
objects = list()
|
||||
for line in data.splitlines():
|
||||
if line == '':
|
||||
continue
|
||||
if line[0].isdigit():
|
||||
vlan = line.split()[0]
|
||||
objects.append(vlan)
|
||||
return objects
|
||||
|
||||
def parse_module(self, data):
|
||||
objects = list()
|
||||
for line in data.splitlines():
|
||||
if line == '':
|
||||
break
|
||||
if line[0].isdigit():
|
||||
obj = {}
|
||||
match_port = re.search(r'\d\s*(\d*)', line, re.M)
|
||||
if match_port:
|
||||
obj['ports'] = match_port.group(1)
|
||||
|
||||
match = re.search(r'\d\s*\d*\s*(.+)$', line, re.M)
|
||||
if match:
|
||||
l = match.group(1).split(' ')
|
||||
items = list()
|
||||
for item in l:
|
||||
if item == '':
|
||||
continue
|
||||
items.append(item.strip())
|
||||
|
||||
if items:
|
||||
obj['type'] = items[0]
|
||||
obj['model'] = items[1]
|
||||
obj['status'] = items[2]
|
||||
|
||||
objects.append(obj)
|
||||
return objects
|
||||
|
||||
def parse_fan_info(self, data):
|
||||
objects = list()
|
||||
|
||||
for l in data.splitlines():
|
||||
if '-----------------' in l or 'Status' in l:
|
||||
continue
|
||||
line = l.split()
|
||||
if len(line) > 1:
|
||||
obj = {}
|
||||
obj['name'] = line[0]
|
||||
obj['model'] = line[1]
|
||||
obj['hw_ver'] = line[-2]
|
||||
obj['status'] = line[-1]
|
||||
objects.append(obj)
|
||||
return objects
|
||||
|
||||
def parse_power_supply_info(self, data):
|
||||
objects = list()
|
||||
|
||||
for l in data.splitlines():
|
||||
if l == '':
|
||||
break
|
||||
if l[0].isdigit():
|
||||
obj = {}
|
||||
line = l.split()
|
||||
obj['model'] = line[1]
|
||||
obj['number'] = line[0]
|
||||
obj['status'] = line[-1]
|
||||
|
||||
objects.append(obj)
|
||||
return objects
|
0
lib/ansible/module_utils/network/nxos/utils/__init__.py
Normal file
0
lib/ansible/module_utils/network/nxos/utils/__init__.py
Normal file
142
lib/ansible/module_utils/network/nxos/utils/utils.py
Normal file
142
lib/ansible/module_utils/network/nxos/utils/utils.py
Normal file
|
@ -0,0 +1,142 @@
|
|||
import socket
|
||||
|
||||
from ansible.module_utils.six import iteritems
|
||||
|
||||
|
||||
def search_obj_in_list(name, lst):
|
||||
for o in lst:
|
||||
if o['name'] == name:
|
||||
return o
|
||||
return None
|
||||
|
||||
|
||||
def eliminate_null_keys(cfg_dict):
|
||||
if not cfg_dict:
|
||||
return None
|
||||
if isinstance(cfg_dict, list):
|
||||
final_cfg = []
|
||||
for cfg in cfg_dict:
|
||||
final_cfg.append(_null_keys(cfg))
|
||||
else:
|
||||
final_cfg = _null_keys(cfg_dict)
|
||||
|
||||
return final_cfg
|
||||
|
||||
|
||||
def _null_keys(cfg):
|
||||
final_cfg = {}
|
||||
for k, v in iteritems(cfg):
|
||||
if v:
|
||||
if isinstance(v, dict):
|
||||
final_cfg.update(eliminate_null_keys(v))
|
||||
else:
|
||||
final_cfg.update({k: v})
|
||||
return final_cfg
|
||||
|
||||
|
||||
def validate_ipv4_addr(address):
|
||||
address = address.split('/')[0]
|
||||
try:
|
||||
socket.inet_aton(address)
|
||||
except socket.error:
|
||||
return False
|
||||
return address.count('.') == 3
|
||||
|
||||
|
||||
def validate_ipv6_addr(address):
|
||||
address = address.split('/')[0]
|
||||
try:
|
||||
socket.inet_pton(socket.AF_INET6, address)
|
||||
except socket.error:
|
||||
return False
|
||||
return True
|
||||
|
||||
|
||||
def normalize_interface(name):
|
||||
"""Return the normalized interface name
|
||||
"""
|
||||
if not name:
|
||||
return
|
||||
|
||||
def _get_number(name):
|
||||
digits = ''
|
||||
for char in name:
|
||||
if char.isdigit() or char in '/.':
|
||||
digits += char
|
||||
return digits
|
||||
|
||||
if name.lower().startswith('et'):
|
||||
if_type = 'Ethernet'
|
||||
elif name.lower().startswith('vl'):
|
||||
if_type = 'Vlan'
|
||||
elif name.lower().startswith('lo'):
|
||||
if_type = 'loopback'
|
||||
elif name.lower().startswith('po'):
|
||||
if_type = 'port-channel'
|
||||
elif name.lower().startswith('nv'):
|
||||
if_type = 'nve'
|
||||
else:
|
||||
if_type = None
|
||||
|
||||
number_list = name.split(' ')
|
||||
if len(number_list) == 2:
|
||||
number = number_list[-1].strip()
|
||||
else:
|
||||
number = _get_number(name)
|
||||
|
||||
if if_type:
|
||||
proper_interface = if_type + number
|
||||
else:
|
||||
proper_interface = name
|
||||
|
||||
return proper_interface
|
||||
|
||||
|
||||
def get_interface_type(interface):
|
||||
"""Gets the type of interface
|
||||
"""
|
||||
if interface.upper().startswith('ET'):
|
||||
return 'ethernet'
|
||||
elif interface.upper().startswith('VL'):
|
||||
return 'svi'
|
||||
elif interface.upper().startswith('LO'):
|
||||
return 'loopback'
|
||||
elif interface.upper().startswith('MG'):
|
||||
return 'management'
|
||||
elif interface.upper().startswith('MA'):
|
||||
return 'management'
|
||||
elif interface.upper().startswith('PO'):
|
||||
return 'portchannel'
|
||||
elif interface.upper().startswith('NV'):
|
||||
return 'nve'
|
||||
else:
|
||||
return 'unknown'
|
||||
|
||||
|
||||
def vlan_range_to_list(vlans):
|
||||
result = []
|
||||
if vlans:
|
||||
for part in vlans.split(','):
|
||||
if part == 'none':
|
||||
break
|
||||
if '-' in part:
|
||||
a, b = part.split('-')
|
||||
a, b = int(a), int(b)
|
||||
result.extend(range(a, b + 1))
|
||||
else:
|
||||
a = int(part)
|
||||
result.append(a)
|
||||
return numerical_sort(result)
|
||||
return result
|
||||
|
||||
|
||||
def numerical_sort(string_int_list):
|
||||
"""Sorts list of integers that are digits in numerical order.
|
||||
"""
|
||||
|
||||
as_int_list = []
|
||||
|
||||
for vlan in string_int_list:
|
||||
as_int_list.append(int(vlan))
|
||||
as_int_list.sort()
|
||||
return as_int_list
|
|
@ -51,21 +51,49 @@ options:
|
|||
required: false
|
||||
default: '!config'
|
||||
version_added: "2.2"
|
||||
gather_network_resources:
|
||||
description:
|
||||
- When supplied, this argument will restrict the facts collected
|
||||
to a given subset. Possible values for this argument include
|
||||
all and the resources like interfaces, vlans etc.
|
||||
Can specify a list of values to include a larger subset.
|
||||
choices: ['all']
|
||||
required: false
|
||||
version_added: "2.9"
|
||||
"""
|
||||
|
||||
EXAMPLES = """
|
||||
- nxos_facts:
|
||||
- name: Gather all legacy facts
|
||||
nxos_facts:
|
||||
gather_subset: all
|
||||
|
||||
# Collect only the config and default facts
|
||||
- nxos_facts:
|
||||
- name: Gather only the config and default facts
|
||||
nxos_facts:
|
||||
gather_subset:
|
||||
- config
|
||||
|
||||
# Do not collect hardware facts
|
||||
- nxos_facts:
|
||||
- name: Do not gather hardware facts
|
||||
nxos_facts:
|
||||
gather_subset:
|
||||
- "!hardware"
|
||||
|
||||
- name: Gather legacy and resource facts
|
||||
nxos_facts:
|
||||
gather_subset: all
|
||||
gather_network_resources: all
|
||||
|
||||
- name: Gather only the interfaces resource facts and no legacy facts
|
||||
nxos_facts:
|
||||
gather_subset:
|
||||
- '!all'
|
||||
- '!min'
|
||||
gather_network_resources:
|
||||
- interfaces
|
||||
|
||||
- name: Gather interfaces resource and minimal legacy facts
|
||||
nxos_facts:
|
||||
gather_subset: min
|
||||
gather_network_resources: interfaces
|
||||
"""
|
||||
|
||||
RETURN = """
|
||||
|
@ -74,6 +102,11 @@ ansible_net_gather_subset:
|
|||
returned: always
|
||||
type: list
|
||||
|
||||
ansible_net_gather_network_resources:
|
||||
description: The list of fact for network resource subsets collected from the device
|
||||
returned: when the resource is configured
|
||||
type: list
|
||||
|
||||
# default
|
||||
ansible_net_model:
|
||||
description: The model name returned from the device
|
||||
|
@ -183,836 +216,28 @@ vlan_list:
|
|||
type: list
|
||||
"""
|
||||
|
||||
import platform
|
||||
import re
|
||||
|
||||
from ansible.module_utils.network.nxos.nxos import run_commands, get_config
|
||||
from ansible.module_utils.network.nxos.nxos import get_capabilities, get_interface_type
|
||||
from ansible.module_utils.network.nxos.nxos import nxos_argument_spec, check_args
|
||||
from ansible.module_utils.network.nxos.nxos import normalize_interface
|
||||
from ansible.module_utils.basic import AnsibleModule
|
||||
from ansible.module_utils.connection import ConnectionError
|
||||
from ansible.module_utils.six import string_types, iteritems
|
||||
|
||||
|
||||
g_config = None
|
||||
|
||||
|
||||
class FactsBase(object):
|
||||
|
||||
def __init__(self, module):
|
||||
self.module = module
|
||||
self.warnings = list()
|
||||
self.facts = dict()
|
||||
self.capabilities = get_capabilities(self.module)
|
||||
|
||||
def populate(self):
|
||||
pass
|
||||
|
||||
def run(self, command, output='text'):
|
||||
command_string = command
|
||||
command = {
|
||||
'command': command,
|
||||
'output': output
|
||||
}
|
||||
resp = run_commands(self.module, [command], check_rc='retry_json')
|
||||
try:
|
||||
return resp[0]
|
||||
except IndexError:
|
||||
self.warnings.append('command %s failed, facts for this command will not be populated' % command_string)
|
||||
return None
|
||||
|
||||
def get_config(self):
|
||||
global g_config
|
||||
if not g_config:
|
||||
g_config = get_config(self.module)
|
||||
return g_config
|
||||
|
||||
def transform_dict(self, data, keymap):
|
||||
transform = dict()
|
||||
for key, fact in keymap:
|
||||
if key in data:
|
||||
transform[fact] = data[key]
|
||||
return transform
|
||||
|
||||
def transform_iterable(self, iterable, keymap):
|
||||
for item in iterable:
|
||||
yield self.transform_dict(item, keymap)
|
||||
|
||||
|
||||
class Default(FactsBase):
|
||||
|
||||
def populate(self):
|
||||
data = None
|
||||
data = self.run('show version')
|
||||
|
||||
if data:
|
||||
self.facts['serialnum'] = self.parse_serialnum(data)
|
||||
|
||||
data = self.run('show license host-id')
|
||||
if data:
|
||||
self.facts['license_hostid'] = self.parse_license_hostid(data)
|
||||
|
||||
self.facts.update(self.platform_facts())
|
||||
|
||||
def parse_serialnum(self, data):
|
||||
match = re.search(r'Processor Board ID\s*(\S+)', data, re.M)
|
||||
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)
|
||||
|
||||
def platform_facts(self):
|
||||
platform_facts = {}
|
||||
|
||||
resp = self.capabilities
|
||||
device_info = resp['device_info']
|
||||
|
||||
platform_facts['system'] = device_info['network_os']
|
||||
|
||||
for item in ('model', 'image', 'version', 'platform', 'hostname'):
|
||||
val = device_info.get('network_os_%s' % item)
|
||||
if val:
|
||||
platform_facts[item] = val
|
||||
|
||||
platform_facts['api'] = resp['network_api']
|
||||
platform_facts['python_version'] = platform.python_version()
|
||||
|
||||
return platform_facts
|
||||
|
||||
|
||||
class Config(FactsBase):
|
||||
|
||||
def populate(self):
|
||||
super(Config, self).populate()
|
||||
self.facts['config'] = self.get_config()
|
||||
|
||||
|
||||
class Features(FactsBase):
|
||||
|
||||
def populate(self):
|
||||
super(Features, self).populate()
|
||||
data = self.get_config()
|
||||
|
||||
if data:
|
||||
features = []
|
||||
for line in data.splitlines():
|
||||
if line.startswith('feature'):
|
||||
features.append(line.replace('feature', '').strip())
|
||||
|
||||
self.facts['features_enabled'] = features
|
||||
|
||||
|
||||
class Hardware(FactsBase):
|
||||
|
||||
def populate(self):
|
||||
data = self.run('dir')
|
||||
if data:
|
||||
self.facts['filesystems'] = self.parse_filesystems(data)
|
||||
|
||||
data = None
|
||||
data = self.run('show system resources', output='json')
|
||||
|
||||
if data:
|
||||
if isinstance(data, dict):
|
||||
self.facts['memtotal_mb'] = int(data['memory_usage_total']) / 1024
|
||||
self.facts['memfree_mb'] = int(data['memory_usage_free']) / 1024
|
||||
else:
|
||||
self.facts['memtotal_mb'] = self.parse_memtotal_mb(data)
|
||||
self.facts['memfree_mb'] = self.parse_memfree_mb(data)
|
||||
|
||||
def parse_filesystems(self, data):
|
||||
return re.findall(r'^Usage for (\S+)//', data, re.M)
|
||||
|
||||
def parse_memtotal_mb(self, data):
|
||||
match = re.search(r'(\S+)K(\s+|)total', data, re.M)
|
||||
if match:
|
||||
memtotal = match.group(1)
|
||||
return int(memtotal) / 1024
|
||||
|
||||
def parse_memfree_mb(self, data):
|
||||
match = re.search(r'(\S+)K(\s+|)free', data, re.M)
|
||||
if match:
|
||||
memfree = match.group(1)
|
||||
return int(memfree) / 1024
|
||||
|
||||
|
||||
class Interfaces(FactsBase):
|
||||
|
||||
INTERFACE_MAP = frozenset([
|
||||
('state', 'state'),
|
||||
('desc', 'description'),
|
||||
('eth_bw', 'bandwidth'),
|
||||
('eth_duplex', 'duplex'),
|
||||
('eth_speed', 'speed'),
|
||||
('eth_mode', 'mode'),
|
||||
('eth_hw_addr', 'macaddress'),
|
||||
('eth_mtu', 'mtu'),
|
||||
('eth_hw_desc', 'type')
|
||||
])
|
||||
|
||||
INTERFACE_SVI_MAP = frozenset([
|
||||
('svi_line_proto', 'state'),
|
||||
('svi_bw', 'bandwidth'),
|
||||
('svi_mac', 'macaddress'),
|
||||
('svi_mtu', 'mtu'),
|
||||
('type', 'type')
|
||||
])
|
||||
|
||||
INTERFACE_IPV4_MAP = frozenset([
|
||||
('eth_ip_addr', 'address'),
|
||||
('eth_ip_mask', 'masklen')
|
||||
])
|
||||
|
||||
INTERFACE_SVI_IPV4_MAP = frozenset([
|
||||
('svi_ip_addr', 'address'),
|
||||
('svi_ip_mask', 'masklen')
|
||||
])
|
||||
|
||||
INTERFACE_IPV6_MAP = frozenset([
|
||||
('addr', 'address'),
|
||||
('prefix', 'subnet')
|
||||
])
|
||||
|
||||
def ipv6_structure_op_supported(self):
|
||||
data = self.capabilities
|
||||
if data:
|
||||
nxos_os_version = data['device_info']['network_os_version']
|
||||
unsupported_versions = ['I2', 'F1', 'A8']
|
||||
for ver in unsupported_versions:
|
||||
if ver in nxos_os_version:
|
||||
return False
|
||||
return True
|
||||
|
||||
def populate(self):
|
||||
self.facts['all_ipv4_addresses'] = list()
|
||||
self.facts['all_ipv6_addresses'] = list()
|
||||
self.facts['neighbors'] = {}
|
||||
data = None
|
||||
|
||||
data = self.run('show interface', output='json')
|
||||
|
||||
if data:
|
||||
if isinstance(data, dict):
|
||||
self.facts['interfaces'] = self.populate_structured_interfaces(data)
|
||||
else:
|
||||
interfaces = self.parse_interfaces(data)
|
||||
self.facts['interfaces'] = self.populate_interfaces(interfaces)
|
||||
|
||||
if self.ipv6_structure_op_supported():
|
||||
data = self.run('show ipv6 interface', output='json')
|
||||
else:
|
||||
data = None
|
||||
if data:
|
||||
if isinstance(data, dict):
|
||||
self.populate_structured_ipv6_interfaces(data)
|
||||
else:
|
||||
interfaces = self.parse_interfaces(data)
|
||||
self.populate_ipv6_interfaces(interfaces)
|
||||
|
||||
data = self.run('show lldp neighbors', output='json')
|
||||
if data:
|
||||
if isinstance(data, dict):
|
||||
self.facts['neighbors'].update(self.populate_structured_neighbors_lldp(data))
|
||||
else:
|
||||
self.facts['neighbors'].update(self.populate_neighbors(data))
|
||||
|
||||
data = self.run('show cdp neighbors detail', output='json')
|
||||
if data:
|
||||
if isinstance(data, dict):
|
||||
self.facts['neighbors'].update(self.populate_structured_neighbors_cdp(data))
|
||||
else:
|
||||
self.facts['neighbors'].update(self.populate_neighbors_cdp(data))
|
||||
|
||||
self.facts['neighbors'].pop(None, None) # Remove null key
|
||||
|
||||
def populate_structured_interfaces(self, data):
|
||||
interfaces = dict()
|
||||
for item in data['TABLE_interface']['ROW_interface']:
|
||||
name = item['interface']
|
||||
|
||||
intf = dict()
|
||||
if 'type' in item:
|
||||
intf.update(self.transform_dict(item, self.INTERFACE_SVI_MAP))
|
||||
else:
|
||||
intf.update(self.transform_dict(item, self.INTERFACE_MAP))
|
||||
|
||||
if 'eth_ip_addr' in item:
|
||||
intf['ipv4'] = self.transform_dict(item, self.INTERFACE_IPV4_MAP)
|
||||
self.facts['all_ipv4_addresses'].append(item['eth_ip_addr'])
|
||||
|
||||
if 'svi_ip_addr' in item:
|
||||
intf['ipv4'] = self.transform_dict(item, self.INTERFACE_SVI_IPV4_MAP)
|
||||
self.facts['all_ipv4_addresses'].append(item['svi_ip_addr'])
|
||||
|
||||
interfaces[name] = intf
|
||||
|
||||
return interfaces
|
||||
|
||||
def populate_structured_ipv6_interfaces(self, data):
|
||||
try:
|
||||
data = data['TABLE_intf']
|
||||
if data:
|
||||
if isinstance(data, dict):
|
||||
data = [data]
|
||||
for item in data:
|
||||
name = item['ROW_intf']['intf-name']
|
||||
intf = self.facts['interfaces'][name]
|
||||
intf['ipv6'] = self.transform_dict(item, self.INTERFACE_IPV6_MAP)
|
||||
try:
|
||||
addr = item['ROW_intf']['addr']
|
||||
except KeyError:
|
||||
addr = item['ROW_intf']['TABLE_addr']['ROW_addr']['addr']
|
||||
self.facts['all_ipv6_addresses'].append(addr)
|
||||
else:
|
||||
return ""
|
||||
except TypeError:
|
||||
return ""
|
||||
|
||||
def populate_structured_neighbors_lldp(self, data):
|
||||
objects = dict()
|
||||
data = data['TABLE_nbor']['ROW_nbor']
|
||||
|
||||
if isinstance(data, dict):
|
||||
data = [data]
|
||||
|
||||
for item in data:
|
||||
local_intf = normalize_interface(item['l_port_id'])
|
||||
objects[local_intf] = list()
|
||||
nbor = dict()
|
||||
nbor['port'] = item['port_id']
|
||||
nbor['host'] = nbor['sysname'] = item['chassis_id']
|
||||
objects[local_intf].append(nbor)
|
||||
|
||||
return objects
|
||||
|
||||
def populate_structured_neighbors_cdp(self, data):
|
||||
objects = dict()
|
||||
data = data['TABLE_cdp_neighbor_detail_info']['ROW_cdp_neighbor_detail_info']
|
||||
|
||||
if isinstance(data, dict):
|
||||
data = [data]
|
||||
|
||||
for item in data:
|
||||
local_intf = item['intf_id']
|
||||
objects[local_intf] = list()
|
||||
nbor = dict()
|
||||
nbor['port'] = item['port_id']
|
||||
nbor['host'] = nbor['sysname'] = item['device_id']
|
||||
objects[local_intf].append(nbor)
|
||||
|
||||
return objects
|
||||
|
||||
def parse_interfaces(self, data):
|
||||
parsed = dict()
|
||||
key = ''
|
||||
for line in data.split('\n'):
|
||||
if len(line) == 0:
|
||||
continue
|
||||
elif line.startswith('admin') or line[0] == ' ':
|
||||
parsed[key] += '\n%s' % line
|
||||
else:
|
||||
match = re.match(r'^(\S+)', line)
|
||||
if match:
|
||||
key = match.group(1)
|
||||
if not key.startswith('admin') or not key.startswith('IPv6 Interface'):
|
||||
parsed[key] = line
|
||||
return parsed
|
||||
|
||||
def populate_interfaces(self, interfaces):
|
||||
facts = dict()
|
||||
for key, value in iteritems(interfaces):
|
||||
intf = dict()
|
||||
if get_interface_type(key) == 'svi':
|
||||
intf['state'] = self.parse_state(key, value, intf_type='svi')
|
||||
intf['macaddress'] = self.parse_macaddress(value, intf_type='svi')
|
||||
intf['mtu'] = self.parse_mtu(value, intf_type='svi')
|
||||
intf['bandwidth'] = self.parse_bandwidth(value, intf_type='svi')
|
||||
intf['type'] = self.parse_type(value, intf_type='svi')
|
||||
if 'Internet Address' in value:
|
||||
intf['ipv4'] = self.parse_ipv4_address(value, intf_type='svi')
|
||||
facts[key] = intf
|
||||
else:
|
||||
intf['state'] = self.parse_state(key, value)
|
||||
intf['description'] = self.parse_description(value)
|
||||
intf['macaddress'] = self.parse_macaddress(value)
|
||||
intf['mode'] = self.parse_mode(value)
|
||||
intf['mtu'] = self.parse_mtu(value)
|
||||
intf['bandwidth'] = self.parse_bandwidth(value)
|
||||
intf['duplex'] = self.parse_duplex(value)
|
||||
intf['speed'] = self.parse_speed(value)
|
||||
intf['type'] = self.parse_type(value)
|
||||
if 'Internet Address' in value:
|
||||
intf['ipv4'] = self.parse_ipv4_address(value)
|
||||
facts[key] = intf
|
||||
|
||||
return facts
|
||||
|
||||
def parse_state(self, key, value, intf_type='ethernet'):
|
||||
match = None
|
||||
if intf_type == 'svi':
|
||||
match = re.search(r'line protocol is\s*(\S+)', value, re.M)
|
||||
else:
|
||||
match = re.search(r'%s is\s*(\S+)' % key, value, re.M)
|
||||
|
||||
if match:
|
||||
return match.group(1)
|
||||
|
||||
def parse_macaddress(self, value, intf_type='ethernet'):
|
||||
match = None
|
||||
if intf_type == 'svi':
|
||||
match = re.search(r'address is\s*(\S+)', value, re.M)
|
||||
else:
|
||||
match = re.search(r'address:\s*(\S+)', value, re.M)
|
||||
|
||||
if match:
|
||||
return match.group(1)
|
||||
|
||||
def parse_mtu(self, value, intf_type='ethernet'):
|
||||
match = re.search(r'MTU\s*(\S+)', value, re.M)
|
||||
if match:
|
||||
return match.group(1)
|
||||
|
||||
def parse_bandwidth(self, value, intf_type='ethernet'):
|
||||
match = re.search(r'BW\s*(\S+)', value, re.M)
|
||||
if match:
|
||||
return match.group(1)
|
||||
|
||||
def parse_type(self, value, intf_type='ethernet'):
|
||||
match = None
|
||||
if intf_type == 'svi':
|
||||
match = re.search(r'Hardware is\s*(\S+)', value, re.M)
|
||||
else:
|
||||
match = re.search(r'Hardware:\s*(.+),', value, re.M)
|
||||
|
||||
if match:
|
||||
return match.group(1)
|
||||
|
||||
def parse_description(self, value, intf_type='ethernet'):
|
||||
match = re.search(r'Description: (.+)$', value, re.M)
|
||||
if match:
|
||||
return match.group(1)
|
||||
|
||||
def parse_mode(self, value, intf_type='ethernet'):
|
||||
match = re.search(r'Port mode is (\S+)', value, re.M)
|
||||
if match:
|
||||
return match.group(1)
|
||||
|
||||
def parse_duplex(self, value, intf_type='ethernet'):
|
||||
match = re.search(r'(\S+)-duplex', value, re.M)
|
||||
if match:
|
||||
return match.group(1)
|
||||
|
||||
def parse_speed(self, value, intf_type='ethernet'):
|
||||
match = re.search(r'duplex, (.+)$', value, re.M)
|
||||
if match:
|
||||
return match.group(1)
|
||||
|
||||
def parse_ipv4_address(self, value, intf_type='ethernet'):
|
||||
ipv4 = {}
|
||||
match = re.search(r'Internet Address is (.+)$', value, re.M)
|
||||
if match:
|
||||
address = match.group(1)
|
||||
addr = address.split('/')[0]
|
||||
ipv4['address'] = address.split('/')[0]
|
||||
ipv4['masklen'] = address.split('/')[1]
|
||||
self.facts['all_ipv4_addresses'].append(addr)
|
||||
return ipv4
|
||||
|
||||
def populate_neighbors(self, data):
|
||||
objects = dict()
|
||||
# if there are no neighbors the show command returns
|
||||
# ERROR: No neighbour information
|
||||
if data.startswith('ERROR'):
|
||||
return dict()
|
||||
|
||||
regex = re.compile(r'(\S+)\s+(\S+)\s+\d+\s+\w+\s+(\S+)')
|
||||
|
||||
for item in data.split('\n')[4:-1]:
|
||||
match = regex.match(item)
|
||||
if match:
|
||||
nbor = dict()
|
||||
nbor['host'] = nbor['sysname'] = match.group(1)
|
||||
nbor['port'] = match.group(3)
|
||||
local_intf = normalize_interface(match.group(2))
|
||||
if local_intf not in objects:
|
||||
objects[local_intf] = []
|
||||
objects[local_intf].append(nbor)
|
||||
|
||||
return objects
|
||||
|
||||
def populate_neighbors_cdp(self, data):
|
||||
facts = dict()
|
||||
|
||||
for item in data.split('----------------------------------------'):
|
||||
if item == '':
|
||||
continue
|
||||
local_intf = self.parse_lldp_intf(item)
|
||||
if local_intf not in facts:
|
||||
facts[local_intf] = list()
|
||||
|
||||
fact = dict()
|
||||
fact['port'] = self.parse_lldp_port(item)
|
||||
fact['sysname'] = self.parse_lldp_sysname(item)
|
||||
facts[local_intf].append(fact)
|
||||
|
||||
return facts
|
||||
|
||||
def parse_lldp_intf(self, data):
|
||||
match = re.search(r'Interface:\s*(\S+)', data, re.M)
|
||||
if match:
|
||||
return match.group(1).strip(',')
|
||||
|
||||
def parse_lldp_port(self, data):
|
||||
match = re.search(r'Port ID \(outgoing port\):\s*(\S+)', data, re.M)
|
||||
if match:
|
||||
return match.group(1)
|
||||
|
||||
def parse_lldp_sysname(self, data):
|
||||
match = re.search(r'Device ID:(.+)$', data, re.M)
|
||||
if match:
|
||||
return match.group(1)
|
||||
|
||||
def populate_ipv6_interfaces(self, interfaces):
|
||||
facts = dict()
|
||||
for key, value in iteritems(interfaces):
|
||||
intf = dict()
|
||||
intf['ipv6'] = self.parse_ipv6_address(value)
|
||||
facts[key] = intf
|
||||
|
||||
def parse_ipv6_address(self, value):
|
||||
ipv6 = {}
|
||||
match_addr = re.search(r'IPv6 address:\s*(\S+)', value, re.M)
|
||||
if match_addr:
|
||||
addr = match_addr.group(1)
|
||||
ipv6['address'] = addr
|
||||
self.facts['all_ipv6_addresses'].append(addr)
|
||||
match_subnet = re.search(r'IPv6 subnet:\s*(\S+)', value, re.M)
|
||||
if match_subnet:
|
||||
ipv6['subnet'] = match_subnet.group(1)
|
||||
|
||||
return ipv6
|
||||
|
||||
|
||||
class Legacy(FactsBase):
|
||||
# facts from nxos_facts 2.1
|
||||
|
||||
VERSION_MAP = frozenset([
|
||||
('host_name', '_hostname'),
|
||||
('kickstart_ver_str', '_os'),
|
||||
('chassis_id', '_platform')
|
||||
])
|
||||
|
||||
MODULE_MAP = frozenset([
|
||||
('model', 'model'),
|
||||
('modtype', 'type'),
|
||||
('ports', 'ports'),
|
||||
('status', 'status')
|
||||
])
|
||||
|
||||
FAN_MAP = frozenset([
|
||||
('fanname', 'name'),
|
||||
('fanmodel', 'model'),
|
||||
('fanhwver', 'hw_ver'),
|
||||
('fandir', 'direction'),
|
||||
('fanstatus', 'status')
|
||||
])
|
||||
|
||||
POWERSUP_MAP = frozenset([
|
||||
('psmodel', 'model'),
|
||||
('psnum', 'number'),
|
||||
('ps_status', 'status'),
|
||||
('ps_status_3k', 'status'),
|
||||
('actual_out', 'actual_output'),
|
||||
('actual_in', 'actual_in'),
|
||||
('total_capa', 'total_capacity'),
|
||||
('input_type', 'input_type'),
|
||||
('watts', 'watts'),
|
||||
('amps', 'amps')
|
||||
])
|
||||
|
||||
def populate(self):
|
||||
data = None
|
||||
|
||||
data = self.run('show version', output='json')
|
||||
if data:
|
||||
if isinstance(data, dict):
|
||||
self.facts.update(self.transform_dict(data, self.VERSION_MAP))
|
||||
else:
|
||||
self.facts['_hostname'] = self.parse_hostname(data)
|
||||
self.facts['_os'] = self.parse_os(data)
|
||||
self.facts['_platform'] = self.parse_platform(data)
|
||||
|
||||
data = self.run('show interface', output='json')
|
||||
if data:
|
||||
if isinstance(data, dict):
|
||||
self.facts['_interfaces_list'] = self.parse_structured_interfaces(data)
|
||||
else:
|
||||
self.facts['_interfaces_list'] = self.parse_interfaces(data)
|
||||
|
||||
data = self.run('show vlan brief', output='json')
|
||||
if data:
|
||||
if isinstance(data, dict):
|
||||
self.facts['_vlan_list'] = self.parse_structured_vlans(data)
|
||||
else:
|
||||
self.facts['_vlan_list'] = self.parse_vlans(data)
|
||||
|
||||
data = self.run('show module', output='json')
|
||||
if data:
|
||||
if isinstance(data, dict):
|
||||
self.facts['_module'] = self.parse_structured_module(data)
|
||||
else:
|
||||
self.facts['_module'] = self.parse_module(data)
|
||||
|
||||
data = self.run('show environment fan', output='json')
|
||||
if data:
|
||||
if isinstance(data, dict):
|
||||
self.facts['_fan_info'] = self.parse_structured_fan_info(data)
|
||||
else:
|
||||
self.facts['_fan_info'] = self.parse_fan_info(data)
|
||||
|
||||
data = self.run('show environment power', output='json')
|
||||
if data:
|
||||
if isinstance(data, dict):
|
||||
self.facts['_power_supply_info'] = self.parse_structured_power_supply_info(data)
|
||||
else:
|
||||
self.facts['_power_supply_info'] = self.parse_power_supply_info(data)
|
||||
|
||||
def parse_structured_interfaces(self, data):
|
||||
objects = list()
|
||||
for item in data['TABLE_interface']['ROW_interface']:
|
||||
objects.append(item['interface'])
|
||||
return objects
|
||||
|
||||
def parse_structured_vlans(self, data):
|
||||
objects = list()
|
||||
data = data['TABLE_vlanbriefxbrief']['ROW_vlanbriefxbrief']
|
||||
if isinstance(data, dict):
|
||||
objects.append(data['vlanshowbr-vlanid-utf'])
|
||||
elif isinstance(data, list):
|
||||
for item in data:
|
||||
objects.append(item['vlanshowbr-vlanid-utf'])
|
||||
return objects
|
||||
|
||||
def parse_structured_module(self, data):
|
||||
data = data['TABLE_modinfo']['ROW_modinfo']
|
||||
if isinstance(data, dict):
|
||||
data = [data]
|
||||
objects = list(self.transform_iterable(data, self.MODULE_MAP))
|
||||
return objects
|
||||
|
||||
def parse_structured_fan_info(self, data):
|
||||
objects = list()
|
||||
if data.get('fandetails'):
|
||||
data = data['fandetails']['TABLE_faninfo']['ROW_faninfo']
|
||||
elif data.get('fandetails_3k'):
|
||||
data = data['fandetails_3k']['TABLE_faninfo']['ROW_faninfo']
|
||||
else:
|
||||
return objects
|
||||
objects = list(self.transform_iterable(data, self.FAN_MAP))
|
||||
return objects
|
||||
|
||||
def parse_structured_power_supply_info(self, data):
|
||||
if data.get('powersup').get('TABLE_psinfo_n3k'):
|
||||
fact = data['powersup']['TABLE_psinfo_n3k']['ROW_psinfo_n3k']
|
||||
else:
|
||||
if isinstance(data['powersup']['TABLE_psinfo'], list):
|
||||
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
|
||||
|
||||
def parse_hostname(self, data):
|
||||
match = re.search(r'\s+Device name:\s+(\S+)', data, re.M)
|
||||
if match:
|
||||
return match.group(1)
|
||||
|
||||
def parse_os(self, data):
|
||||
match = re.search(r'\s+system:\s+version\s*(\S+)', data, re.M)
|
||||
if match:
|
||||
return match.group(1)
|
||||
else:
|
||||
match = re.search(r'\s+kickstart:\s+version\s*(\S+)', data, re.M)
|
||||
if match:
|
||||
return match.group(1)
|
||||
|
||||
def parse_platform(self, data):
|
||||
match = re.search(r'Hardware\n\s+cisco\s+(\S+\s+\S+)', data, re.M)
|
||||
if match:
|
||||
return match.group(1)
|
||||
|
||||
def parse_interfaces(self, data):
|
||||
objects = list()
|
||||
for line in data.split('\n'):
|
||||
if len(line) == 0:
|
||||
continue
|
||||
elif line.startswith('admin') or line[0] == ' ':
|
||||
continue
|
||||
else:
|
||||
match = re.match(r'^(\S+)', line)
|
||||
if match:
|
||||
intf = match.group(1)
|
||||
if get_interface_type(intf) != 'unknown':
|
||||
objects.append(intf)
|
||||
return objects
|
||||
|
||||
def parse_vlans(self, data):
|
||||
objects = list()
|
||||
for line in data.splitlines():
|
||||
if line == '':
|
||||
continue
|
||||
if line[0].isdigit():
|
||||
vlan = line.split()[0]
|
||||
objects.append(vlan)
|
||||
return objects
|
||||
|
||||
def parse_module(self, data):
|
||||
objects = list()
|
||||
for line in data.splitlines():
|
||||
if line == '' or re.search(r'\b' + 'Sw' + r'\b', line):
|
||||
break
|
||||
if line[0].isdigit():
|
||||
obj = {}
|
||||
match_port = re.search(r'\d\s*(\d*)', line, re.M)
|
||||
if match_port:
|
||||
obj['ports'] = match_port.group(1)
|
||||
|
||||
match = re.search(r'\d\s*\d*\s*(.+)$', line, re.M)
|
||||
if match:
|
||||
l = match.group(1).split(' ')
|
||||
items = list()
|
||||
for item in l:
|
||||
if item == '':
|
||||
continue
|
||||
items.append(item.strip())
|
||||
|
||||
if items:
|
||||
obj['type'] = items[0]
|
||||
obj['model'] = items[1]
|
||||
obj['status'] = items[-1]
|
||||
|
||||
objects.append(obj)
|
||||
return objects
|
||||
|
||||
def parse_fan_info(self, data):
|
||||
objects = list()
|
||||
|
||||
for l in data.splitlines():
|
||||
if '-----------------' in l or 'Status' in l:
|
||||
continue
|
||||
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['status'] = line[-1]
|
||||
objects.append(obj)
|
||||
return objects
|
||||
|
||||
def parse_power_supply_info(self, data):
|
||||
objects = list()
|
||||
|
||||
for l in data.splitlines():
|
||||
if l == '':
|
||||
break
|
||||
if l[0].isdigit():
|
||||
obj = {}
|
||||
line = l.split()
|
||||
obj['model'] = line[1]
|
||||
obj['number'] = line[0]
|
||||
obj['status'] = line[-1]
|
||||
|
||||
objects.append(obj)
|
||||
return objects
|
||||
|
||||
|
||||
FACT_SUBSETS = dict(
|
||||
default=Default,
|
||||
legacy=Legacy,
|
||||
hardware=Hardware,
|
||||
interfaces=Interfaces,
|
||||
config=Config,
|
||||
features=Features
|
||||
)
|
||||
|
||||
VALID_SUBSETS = frozenset(FACT_SUBSETS.keys())
|
||||
from ansible.module_utils.network.nxos.argspec.facts.facts import FactsArgs
|
||||
from ansible.module_utils.network.nxos.facts.facts import Facts
|
||||
from ansible.module_utils.network.nxos.nxos import nxos_argument_spec
|
||||
|
||||
|
||||
def main():
|
||||
spec = dict(
|
||||
gather_subset=dict(default=['!config'], type='list')
|
||||
)
|
||||
""" Main entry point for AnsibleModule
|
||||
"""
|
||||
argument_spec = FactsArgs.argument_spec
|
||||
argument_spec.update(nxos_argument_spec)
|
||||
|
||||
spec.update(nxos_argument_spec)
|
||||
module = AnsibleModule(argument_spec=argument_spec,
|
||||
supports_check_mode=True)
|
||||
|
||||
module = AnsibleModule(argument_spec=spec, supports_check_mode=True)
|
||||
warnings = ['default value for `gather_subset` '
|
||||
'will be changed to `min` from `!config` v2.11 onwards']
|
||||
|
||||
warnings = list()
|
||||
check_args(module, warnings)
|
||||
result = Facts(module).get_facts()
|
||||
|
||||
gather_subset = module.params['gather_subset']
|
||||
|
||||
runable_subsets = set()
|
||||
exclude_subsets = set()
|
||||
|
||||
for subset in gather_subset:
|
||||
if subset == 'all':
|
||||
runable_subsets.update(VALID_SUBSETS)
|
||||
continue
|
||||
|
||||
if subset.startswith('!'):
|
||||
subset = subset[1:]
|
||||
if subset == 'all':
|
||||
exclude_subsets.update(VALID_SUBSETS)
|
||||
continue
|
||||
exclude = True
|
||||
else:
|
||||
exclude = False
|
||||
|
||||
if subset not in VALID_SUBSETS:
|
||||
module.fail_json(msg='Bad subset')
|
||||
|
||||
if exclude:
|
||||
exclude_subsets.add(subset)
|
||||
else:
|
||||
runable_subsets.add(subset)
|
||||
|
||||
if not runable_subsets:
|
||||
runable_subsets.update(VALID_SUBSETS)
|
||||
|
||||
runable_subsets.difference_update(exclude_subsets)
|
||||
runable_subsets.add('default')
|
||||
|
||||
facts = dict()
|
||||
facts['gather_subset'] = list(runable_subsets)
|
||||
|
||||
instances = list()
|
||||
for key in runable_subsets:
|
||||
instances.append(FACT_SUBSETS[key](module))
|
||||
|
||||
for inst in instances:
|
||||
inst.populate()
|
||||
facts.update(inst.facts)
|
||||
warnings.extend(inst.warnings)
|
||||
|
||||
ansible_facts = dict()
|
||||
for key, value in iteritems(facts):
|
||||
# this is to maintain capability with nxos_facts 2.1
|
||||
if key.startswith('_'):
|
||||
ansible_facts[key[1:]] = value
|
||||
else:
|
||||
key = 'ansible_net_%s' % key
|
||||
ansible_facts[key] = value
|
||||
ansible_facts, additional_warnings = result
|
||||
warnings.extend(additional_warnings)
|
||||
|
||||
module.exit_json(ansible_facts=ansible_facts, warnings=warnings)
|
||||
|
||||
|
|
Loading…
Reference in a new issue