mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
updates to asa_config module for Ansible 2.2
* clean up functions and remove unneeded code * config difference now includes keyword argument * module reports changed when save argument is yes with or without check_mode * updated fail_json return with exc kwargs * fixed up import statements
This commit is contained in:
parent
dc52d3627a
commit
4932df69bc
1 changed files with 38 additions and 54 deletions
|
@ -208,7 +208,7 @@ backup_path:
|
||||||
description: The full path to the backup file
|
description: The full path to the backup file
|
||||||
returned: when backup is yes
|
returned: when backup is yes
|
||||||
type: path
|
type: path
|
||||||
sample: /playbooks/ansible/backup/config.2016-07-16@22:28:34
|
sample: /playbooks/ansible/backup/asa_config.2016-07-16@22:28:34
|
||||||
responses:
|
responses:
|
||||||
description: The set of responses from issuing the commands on the device
|
description: The set of responses from issuing the commands on the device
|
||||||
returned: when not check_mode
|
returned: when not check_mode
|
||||||
|
@ -217,36 +217,17 @@ responses:
|
||||||
"""
|
"""
|
||||||
import re
|
import re
|
||||||
|
|
||||||
|
import ansible.module_utils.asa
|
||||||
|
|
||||||
from ansible.module_utils.basic import get_exception
|
from ansible.module_utils.basic import get_exception
|
||||||
from ansible.module_utils.asa import NetworkModule, NetworkError
|
from ansible.module_utils.network import NetworkModule, NetworkError
|
||||||
from ansible.module_utils.netcfg import NetworkConfig, dumps
|
from ansible.module_utils.netcfg import NetworkConfig, dumps
|
||||||
from ansible.module_utils.netcli import Command
|
|
||||||
|
|
||||||
def invoke(name, *args, **kwargs):
|
|
||||||
func = globals().get(name)
|
|
||||||
if func:
|
|
||||||
return func(*args, **kwargs)
|
|
||||||
|
|
||||||
def check_args(module, warnings):
|
|
||||||
if module.params['parents']:
|
|
||||||
if not module.params['lines'] or module.params['src']:
|
|
||||||
warnings.append('ignoring unnecessary argument parents')
|
|
||||||
if module.params['match'] == 'none' and module.params['replace']:
|
|
||||||
warnings.append('ignoring unnecessary argument replace')
|
|
||||||
|
|
||||||
def get_config(module, result):
|
|
||||||
defaults = module.params['default']
|
|
||||||
if defaults is True:
|
|
||||||
key = '__configall__'
|
|
||||||
else:
|
|
||||||
key = '__config__'
|
|
||||||
|
|
||||||
contents = module.params['config'] or result.get(key)
|
|
||||||
|
|
||||||
|
def get_config(module):
|
||||||
|
contents = module.params['config']
|
||||||
if not contents:
|
if not contents:
|
||||||
|
defaults = module.params['default']
|
||||||
contents = module.config.get_config(include_defaults=defaults)
|
contents = module.config.get_config(include_defaults=defaults)
|
||||||
result[key] = contents
|
|
||||||
|
|
||||||
return NetworkConfig(indent=1, contents=contents)
|
return NetworkConfig(indent=1, contents=contents)
|
||||||
|
|
||||||
def get_candidate(module):
|
def get_candidate(module):
|
||||||
|
@ -258,75 +239,78 @@ def get_candidate(module):
|
||||||
candidate.add(module.params['lines'], parents=parents)
|
candidate.add(module.params['lines'], parents=parents)
|
||||||
return candidate
|
return candidate
|
||||||
|
|
||||||
def load_config(module, commands, result):
|
|
||||||
if not module.check_mode and module.params['update'] != 'check':
|
|
||||||
module.config(commands)
|
|
||||||
result['changed'] = module.params['update'] != 'check'
|
|
||||||
result['updates'] = commands.split('\n')
|
|
||||||
|
|
||||||
def run(module, result):
|
def run(module, result):
|
||||||
match = module.params['match']
|
match = module.params['match']
|
||||||
replace = module.params['replace']
|
replace = module.params['replace']
|
||||||
|
path = module.params['parents']
|
||||||
|
|
||||||
candidate = get_candidate(module)
|
candidate = get_candidate(module)
|
||||||
|
|
||||||
if match != 'none':
|
if match != 'none':
|
||||||
config = get_config(module, result)
|
config = get_config(module)
|
||||||
configobjs = candidate.difference(config, match=match, replace=replace)
|
configobjs = candidate.difference(config, path=path, match=match,
|
||||||
|
replace=replace)
|
||||||
else:
|
else:
|
||||||
config = None
|
|
||||||
configobjs = candidate.items
|
configobjs = candidate.items
|
||||||
|
|
||||||
if configobjs:
|
if configobjs:
|
||||||
commands = dumps(configobjs, 'commands')
|
commands = dumps(configobjs, 'commands').split('\n')
|
||||||
|
|
||||||
if module.params['before']:
|
if module.params['lines']:
|
||||||
commands[:0] = module.params['before']
|
if module.params['before']:
|
||||||
|
commands[:0] = module.params['before']
|
||||||
|
|
||||||
if module.params['after']:
|
if module.params['after']:
|
||||||
commands.extend(module.params['after'])
|
commands.extend(module.params['after'])
|
||||||
|
|
||||||
|
result['updates'] = commands
|
||||||
|
|
||||||
# send the configuration commands to the device and merge
|
# send the configuration commands to the device and merge
|
||||||
# them with the current running config
|
# them with the current running config
|
||||||
load_config(module, commands, result)
|
if not module.check_mode:
|
||||||
|
module.config.load_config(commands)
|
||||||
|
result['changed'] = True
|
||||||
|
|
||||||
if module.params['save'] and not module.check_mode:
|
if module.params['save']:
|
||||||
module.config.save_config()
|
if not module.check_mode:
|
||||||
|
module.config.save_config()
|
||||||
|
result['changed'] = True
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
""" main entry point for module execution
|
||||||
|
"""
|
||||||
argument_spec = dict(
|
argument_spec = dict(
|
||||||
|
src=dict(type='path'),
|
||||||
|
|
||||||
lines=dict(aliases=['commands'], type='list'),
|
lines=dict(aliases=['commands'], type='list'),
|
||||||
parents=dict(type='list'),
|
parents=dict(type='list'),
|
||||||
|
|
||||||
src=dict(type='path'),
|
|
||||||
|
|
||||||
before=dict(type='list'),
|
before=dict(type='list'),
|
||||||
after=dict(type='list'),
|
after=dict(type='list'),
|
||||||
|
|
||||||
match=dict(default='line', choices=['line', 'strict', 'exact', 'none']),
|
match=dict(default='line', choices=['line', 'strict', 'exact', 'none']),
|
||||||
replace=dict(default='line', choices=['line', 'block']),
|
replace=dict(default='line', choices=['line', 'block']),
|
||||||
|
|
||||||
update=dict(choices=['merge', 'check'], default='merge'),
|
|
||||||
backup=dict(type='bool', default=False),
|
|
||||||
|
|
||||||
config=dict(),
|
config=dict(),
|
||||||
default=dict(type='bool', default=False),
|
default=dict(type='bool', default=False),
|
||||||
|
|
||||||
|
backup=dict(type='bool', default=False),
|
||||||
save=dict(type='bool', default=False),
|
save=dict(type='bool', default=False),
|
||||||
)
|
)
|
||||||
|
|
||||||
mutually_exclusive = [('lines', 'src')]
|
mutually_exclusive = [('lines', 'src')]
|
||||||
|
|
||||||
|
required_if = [('match', 'strict', ['lines']),
|
||||||
|
('match', 'exact', ['lines']),
|
||||||
|
('replace', 'block', ['lines'])]
|
||||||
|
|
||||||
module = NetworkModule(argument_spec=argument_spec,
|
module = NetworkModule(argument_spec=argument_spec,
|
||||||
connect_on_load=False,
|
connect_on_load=False,
|
||||||
mutually_exclusive=mutually_exclusive,
|
mutually_exclusive=mutually_exclusive,
|
||||||
|
required_if=required_if,
|
||||||
supports_check_mode=True)
|
supports_check_mode=True)
|
||||||
|
|
||||||
warnings = list()
|
result = dict(changed=False)
|
||||||
check_args(module, warnings)
|
|
||||||
|
|
||||||
result = dict(changed=False, warnings=warnings)
|
|
||||||
|
|
||||||
if module.params['backup']:
|
if module.params['backup']:
|
||||||
result['__backup__'] = module.config.get_config()
|
result['__backup__'] = module.config.get_config()
|
||||||
|
@ -335,7 +319,7 @@ def main():
|
||||||
run(module, result)
|
run(module, result)
|
||||||
except NetworkError:
|
except NetworkError:
|
||||||
exc = get_exception()
|
exc = get_exception()
|
||||||
module.fail_json(msg=str(exc))
|
module.fail_json(msg=str(exc), **exc.kwargs)
|
||||||
|
|
||||||
module.exit_json(**result)
|
module.exit_json(**result)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue