Merge pull request #4788 from privateip/sros_config
roll up updates to sros_config module
This commit is contained in:
commit
61f9fde886
1 changed files with 26 additions and 103 deletions
|
@ -111,30 +111,6 @@ options:
|
||||||
default: false
|
default: false
|
||||||
choices: [ "true", "false" ]
|
choices: [ "true", "false" ]
|
||||||
version_added: "2.2"
|
version_added: "2.2"
|
||||||
update:
|
|
||||||
description:
|
|
||||||
- The I(update) argument controls how the configuration statements
|
|
||||||
are processed on the remote device. Valid choices for the I(update)
|
|
||||||
argument are I(merge) and I(check). When the argument is set to
|
|
||||||
I(merge), the configuration changes are merged with the current
|
|
||||||
device running configuration. When the argument is set to I(check)
|
|
||||||
the configuration updates are determined but not actually configured
|
|
||||||
on the remote device.
|
|
||||||
required: false
|
|
||||||
default: merge
|
|
||||||
choices: ['merge', 'check']
|
|
||||||
version_added: "2.2"
|
|
||||||
commit:
|
|
||||||
description:
|
|
||||||
- This argument specifies the update method to use when applying the
|
|
||||||
configuration changes to the remote node. If the value is set to
|
|
||||||
I(merge) the configuration updates are merged with the running-
|
|
||||||
config. If the value is set to I(check), no changes are made to
|
|
||||||
the remote host.
|
|
||||||
required: false
|
|
||||||
default: merge
|
|
||||||
choices: ['merge', 'check']
|
|
||||||
version_added: "2.2"
|
|
||||||
backup:
|
backup:
|
||||||
description:
|
description:
|
||||||
- This argument will cause the module to create a full backup of
|
- This argument will cause the module to create a full backup of
|
||||||
|
@ -174,15 +150,6 @@ options:
|
||||||
default: no
|
default: no
|
||||||
choices: ['yes', 'no']
|
choices: ['yes', 'no']
|
||||||
version_added: "2.2"
|
version_added: "2.2"
|
||||||
state:
|
|
||||||
description:
|
|
||||||
- This argument specifies whether or not the running-config is
|
|
||||||
present on the remote device. When set to I(absent) the
|
|
||||||
running-config on the remote device is erased.
|
|
||||||
required: false
|
|
||||||
default: no
|
|
||||||
choices: ['yes', 'no']
|
|
||||||
version_added: "2.2"
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
EXAMPLES = """
|
EXAMPLES = """
|
||||||
|
@ -235,22 +202,9 @@ backup_path:
|
||||||
type: path
|
type: path
|
||||||
sample: /playbooks/ansible/backup/sros_config.2016-07-16@22:28:34
|
sample: /playbooks/ansible/backup/sros_config.2016-07-16@22:28:34
|
||||||
"""
|
"""
|
||||||
import re
|
|
||||||
|
|
||||||
from ansible.module_utils.basic import get_exception
|
from ansible.module_utils.basic import get_exception
|
||||||
from ansible.module_utils.sros import NetworkModule, NetworkError
|
from ansible.module_utils.sros 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')
|
|
||||||
|
|
||||||
def sanitize_config(lines):
|
def sanitize_config(lines):
|
||||||
commands = list()
|
commands = list()
|
||||||
|
@ -263,10 +217,9 @@ def sanitize_config(lines):
|
||||||
return commands
|
return commands
|
||||||
|
|
||||||
def get_config(module, result):
|
def get_config(module, result):
|
||||||
contents = module.params['config'] or result.get('__config__')
|
contents = module.params['config']
|
||||||
if not contents:
|
if not contents:
|
||||||
contents = module.config.get_config()
|
contents = module.config.get_config()
|
||||||
result['__config__'] = contents
|
|
||||||
return NetworkConfig(device_os='sros', contents=contents)
|
return NetworkConfig(device_os='sros', contents=contents)
|
||||||
|
|
||||||
def get_candidate(module):
|
def get_candidate(module):
|
||||||
|
@ -278,12 +231,7 @@ def get_candidate(module):
|
||||||
candidate.add(module.params['lines'], parents=parents)
|
candidate.add(module.params['lines'], parents=parents)
|
||||||
return candidate
|
return candidate
|
||||||
|
|
||||||
def revert_config(module):
|
def run(module, result):
|
||||||
if result.get('__checkpoint__'):
|
|
||||||
module.cli(['admin rollback revert latest-rb',
|
|
||||||
'admin rollback delete latest-rb'])
|
|
||||||
|
|
||||||
def present(module, result):
|
|
||||||
match = module.params['match']
|
match = module.params['match']
|
||||||
|
|
||||||
candidate = get_candidate(module)
|
candidate = get_candidate(module)
|
||||||
|
@ -292,7 +240,6 @@ def present(module, result):
|
||||||
config = get_config(module, result)
|
config = get_config(module, result)
|
||||||
configobjs = candidate.difference(config)
|
configobjs = candidate.difference(config)
|
||||||
else:
|
else:
|
||||||
config = None
|
|
||||||
configobjs = candidate.items
|
configobjs = candidate.items
|
||||||
|
|
||||||
if configobjs:
|
if configobjs:
|
||||||
|
@ -301,58 +248,40 @@ def present(module, result):
|
||||||
|
|
||||||
result['updates'] = commands
|
result['updates'] = commands
|
||||||
|
|
||||||
if module.params['update'] != 'check':
|
# check if creating checkpoints is possible
|
||||||
# check if creating checkpoints is possible
|
if not module.connection.rollback_enabled:
|
||||||
config = module.config.get_config()
|
warn = 'Cannot create checkpoint. Please enable this feature ' \
|
||||||
if 'rollback-location' not in config:
|
'using the sros_rollback module. Automatic rollback ' \
|
||||||
warn = 'Cannot create checkpoint. Please enable this feature ' \
|
'will be disabled'
|
||||||
'with "configure system rollback rollback-location" ' \
|
result['warnings'].append(warn)
|
||||||
'command. Automatic rollback will be disabled'
|
|
||||||
result['warnings'].append(warn)
|
|
||||||
result['__checkpoint__'] = False
|
|
||||||
else:
|
|
||||||
result['__checkpoint__'] = True
|
|
||||||
|
|
||||||
# create a config checkpoint prior to trying to
|
# send the configuration commands to the device and merge
|
||||||
# configure the device
|
# them with the current running config
|
||||||
if result.get('__checkpoint__'):
|
if not module.check_mode:
|
||||||
module.cli(['admin rollback save'])
|
module.config.load_config(commands)
|
||||||
|
result['changed'] = True
|
||||||
|
|
||||||
# send the configuration commands to the device and merge
|
if module.params['save']:
|
||||||
# them with the current running config
|
if not module.check_mode:
|
||||||
if not module.check_mode:
|
module.config.save_config()
|
||||||
module.config(commands)
|
result['changed'] = True
|
||||||
result['changed'] = True
|
|
||||||
|
|
||||||
# remove checkpoint from system
|
|
||||||
if result.get('__checkpoint__'):
|
|
||||||
module.cli(['admin rollback delete latest-rb'])
|
|
||||||
|
|
||||||
if module.params['save'] and not module.check_mode:
|
|
||||||
module.config.save_config()
|
|
||||||
|
|
||||||
def absent(module, result):
|
|
||||||
if not module.check_mode:
|
|
||||||
module.cli('write erase')
|
|
||||||
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'),
|
|
||||||
|
|
||||||
match=dict(default='line', choices=['line', 'none']),
|
match=dict(default='line', choices=['line', 'none']),
|
||||||
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),
|
||||||
save=dict(type='bool', default=False),
|
|
||||||
|
|
||||||
state=dict(choices=['present', 'absent'], default='present')
|
backup=dict(type='bool', default=False),
|
||||||
|
save=dict(type='bool', default=False),
|
||||||
)
|
)
|
||||||
|
|
||||||
mutually_exclusive = [('lines', 'src')]
|
mutually_exclusive = [('lines', 'src')]
|
||||||
|
@ -362,22 +291,16 @@ def main():
|
||||||
mutually_exclusive=mutually_exclusive,
|
mutually_exclusive=mutually_exclusive,
|
||||||
supports_check_mode=True)
|
supports_check_mode=True)
|
||||||
|
|
||||||
state = module.params['state']
|
result = dict(changed=False, warnings=list())
|
||||||
|
|
||||||
warnings = list()
|
|
||||||
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()
|
||||||
|
|
||||||
try:
|
try:
|
||||||
invoke(state, module, result)
|
run(module, result)
|
||||||
except NetworkError:
|
except NetworkError:
|
||||||
revert_config(module)
|
|
||||||
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