|
|
@ -112,10 +112,11 @@ commands:
|
|
|
|
import re
|
|
|
|
import re
|
|
|
|
|
|
|
|
|
|
|
|
from ansible.module_utils.network.nxos.nxos import get_config, load_config
|
|
|
|
from ansible.module_utils.network.nxos.nxos import get_config, load_config
|
|
|
|
from ansible.module_utils.network.nxos.nxos import nxos_argument_spec
|
|
|
|
from ansible.module_utils.network.nxos.nxos import nxos_argument_spec, check_args
|
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
|
|
|
from ansible.module_utils.six import iteritems
|
|
|
|
from ansible.module_utils.six import iteritems
|
|
|
|
from ansible.module_utils.network.common.config import NetworkConfig
|
|
|
|
from ansible.module_utils.network.common.config import NetworkConfig
|
|
|
|
|
|
|
|
from ansible.module_utils.network.common.utils import ComplexList
|
|
|
|
|
|
|
|
|
|
|
|
_CONFIGURED_VRFS = None
|
|
|
|
_CONFIGURED_VRFS = None
|
|
|
|
|
|
|
|
|
|
|
@ -301,45 +302,49 @@ def map_params_to_obj(module):
|
|
|
|
obj = {
|
|
|
|
obj = {
|
|
|
|
'hostname': module.params['hostname'],
|
|
|
|
'hostname': module.params['hostname'],
|
|
|
|
'domain_lookup': module.params['domain_lookup'],
|
|
|
|
'domain_lookup': module.params['domain_lookup'],
|
|
|
|
'system_mtu': module.params['system_mtu'],
|
|
|
|
'system_mtu': module.params['system_mtu']
|
|
|
|
'domain_name': module.params['domain_name'],
|
|
|
|
|
|
|
|
'domain_search': module.params['domain_search'],
|
|
|
|
|
|
|
|
'name_servers': module.params['name_servers']
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return obj
|
|
|
|
domain_name = ComplexList(dict(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
|
|
|
|
""" main entry point for module execution
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
domain_name_spec = dict(
|
|
|
|
|
|
|
|
name=dict(key=True),
|
|
|
|
name=dict(key=True),
|
|
|
|
vrf=dict()
|
|
|
|
vrf=dict()
|
|
|
|
)
|
|
|
|
), module)
|
|
|
|
|
|
|
|
|
|
|
|
domain_search_spec = dict(
|
|
|
|
domain_search = ComplexList(dict(
|
|
|
|
name=dict(key=True),
|
|
|
|
name=dict(key=True),
|
|
|
|
vrf=dict()
|
|
|
|
vrf=dict()
|
|
|
|
)
|
|
|
|
), module)
|
|
|
|
|
|
|
|
|
|
|
|
name_servers_spec = dict(
|
|
|
|
name_servers = ComplexList(dict(
|
|
|
|
server=dict(key=True),
|
|
|
|
server=dict(key=True),
|
|
|
|
vrf=dict()
|
|
|
|
vrf=dict()
|
|
|
|
)
|
|
|
|
), module)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for arg, cast in [('domain_name', domain_name), ('domain_search', domain_search),
|
|
|
|
|
|
|
|
('name_servers', name_servers)]:
|
|
|
|
|
|
|
|
if module.params[arg] is not None:
|
|
|
|
|
|
|
|
obj[arg] = cast(module.params[arg])
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
obj[arg] = None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return obj
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
|
|
|
|
""" main entry point for module execution
|
|
|
|
|
|
|
|
"""
|
|
|
|
argument_spec = dict(
|
|
|
|
argument_spec = dict(
|
|
|
|
hostname=dict(),
|
|
|
|
hostname=dict(),
|
|
|
|
domain_lookup=dict(type='bool'),
|
|
|
|
domain_lookup=dict(type='bool'),
|
|
|
|
|
|
|
|
|
|
|
|
# { name: <str>, vrf: <str> }
|
|
|
|
# { name: <str>, vrf: <str> }
|
|
|
|
domain_name=dict(type='list', elements='dict', options=domain_name_spec),
|
|
|
|
domain_name=dict(type='list'),
|
|
|
|
|
|
|
|
|
|
|
|
# {name: <str>, vrf: <str> }
|
|
|
|
# {name: <str>, vrf: <str> }
|
|
|
|
domain_search=dict(type='list', elements='dict', options=domain_search_spec),
|
|
|
|
domain_search=dict(type='list'),
|
|
|
|
|
|
|
|
|
|
|
|
# { server: <str>; vrf: <str> }
|
|
|
|
# { server: <str>; vrf: <str> }
|
|
|
|
name_servers=dict(type='list', elements='dict', options=name_servers_spec),
|
|
|
|
name_servers=dict(type='list'),
|
|
|
|
|
|
|
|
|
|
|
|
system_mtu=dict(type='int'),
|
|
|
|
system_mtu=dict(type='int'),
|
|
|
|
lookup_source=dict(),
|
|
|
|
lookup_source=dict(),
|
|
|
@ -352,6 +357,7 @@ def main():
|
|
|
|
supports_check_mode=True)
|
|
|
|
supports_check_mode=True)
|
|
|
|
|
|
|
|
|
|
|
|
warnings = list()
|
|
|
|
warnings = list()
|
|
|
|
|
|
|
|
check_args(module, warnings)
|
|
|
|
|
|
|
|
|
|
|
|
result = {'changed': False}
|
|
|
|
result = {'changed': False}
|
|
|
|
if warnings:
|
|
|
|
if warnings:
|
|
|
@ -370,6 +376,5 @@ def main():
|
|
|
|
|
|
|
|
|
|
|
|
module.exit_json(**result)
|
|
|
|
module.exit_json(**result)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|
|
|
|
main()
|
|
|
|