2017-01-05 03:52:56 +01:00
|
|
|
# This code is part of Ansible, but is an independent component.
|
|
|
|
# This particular file snippet, and this file snippet only, is BSD licensed.
|
|
|
|
# Modules you write using this snippet, which is embedded dynamically by Ansible
|
|
|
|
# still belong to the author of the module, and may assign their own license
|
|
|
|
# to the complete work.
|
2015-11-24 18:27:53 +01:00
|
|
|
#
|
2017-01-05 03:52:56 +01:00
|
|
|
# (c) 2016 Red Hat Inc.
|
2015-11-24 18:27:53 +01:00
|
|
|
#
|
2017-01-05 03:52:56 +01:00
|
|
|
# Redistribution and use in source and binary forms, with or without modification,
|
|
|
|
# are permitted provided that the following conditions are met:
|
2015-11-24 18:27:53 +01:00
|
|
|
#
|
2017-01-05 03:52:56 +01:00
|
|
|
# * Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
# this list of conditions and the following disclaimer in the documentation
|
|
|
|
# and/or other materials provided with the distribution.
|
2015-11-24 18:27:53 +01:00
|
|
|
#
|
2017-01-05 03:52:56 +01:00
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
|
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
|
|
|
# USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2015-11-24 18:27:53 +01:00
|
|
|
#
|
2017-02-13 16:22:14 +01:00
|
|
|
from ansible.module_utils.basic import env_fallback
|
2017-02-14 02:20:44 +01:00
|
|
|
from ansible.module_utils.network_common import to_list, ComplexList
|
2017-02-13 16:22:14 +01:00
|
|
|
from ansible.module_utils.connection import exec_command
|
2016-09-06 19:49:48 +02:00
|
|
|
|
2017-01-05 03:52:56 +01:00
|
|
|
_DEVICE_CONFIGS = {}
|
|
|
|
|
2017-02-13 16:22:14 +01:00
|
|
|
ios_argument_spec = {
|
|
|
|
'host': dict(),
|
|
|
|
'port': dict(type='int'),
|
|
|
|
'username': dict(fallback=(env_fallback, ['ANSIBLE_NET_USERNAME'])),
|
|
|
|
'password': dict(fallback=(env_fallback, ['ANSIBLE_NET_PASSWORD']), no_log=True),
|
|
|
|
'ssh_keyfile': dict(fallback=(env_fallback, ['ANSIBLE_NET_SSH_KEYFILE']), type='path'),
|
|
|
|
'authorize': dict(fallback=(env_fallback, ['ANSIBLE_NET_AUTHORIZE']), type='bool'),
|
|
|
|
'auth_pass': dict(fallback=(env_fallback, ['ANSIBLE_NET_AUTH_PASS']), no_log=True),
|
|
|
|
'timeout': dict(type='int', default=10),
|
|
|
|
'provider': dict(type='dict'),
|
|
|
|
}
|
|
|
|
|
|
|
|
def check_args(module, warnings):
|
|
|
|
provider = module.params['provider'] or {}
|
|
|
|
for key in ios_argument_spec:
|
|
|
|
if key != 'provider' and module.params[key]:
|
|
|
|
warnings.append('argument %s has been deprecated and will be '
|
|
|
|
'removed in a future version' % key)
|
|
|
|
|
2017-01-05 03:52:56 +01:00
|
|
|
def get_config(module, flags=[]):
|
|
|
|
cmd = 'show running-config '
|
|
|
|
cmd += ' '.join(flags)
|
|
|
|
cmd = cmd.strip()
|
|
|
|
|
|
|
|
try:
|
|
|
|
return _DEVICE_CONFIGS[cmd]
|
|
|
|
except KeyError:
|
2017-02-13 16:22:14 +01:00
|
|
|
rc, out, err = exec_command(module, cmd)
|
2017-01-05 03:52:56 +01:00
|
|
|
if rc != 0:
|
|
|
|
module.fail_json(msg='unable to retrieve current config', stderr=err)
|
|
|
|
cfg = str(out).strip()
|
|
|
|
_DEVICE_CONFIGS[cmd] = cfg
|
|
|
|
return cfg
|
|
|
|
|
2017-02-14 02:20:44 +01:00
|
|
|
def to_commands(commands):
|
|
|
|
transform = ComplexList(dict(
|
|
|
|
command=dict(key=True),
|
|
|
|
prompt=dict(),
|
|
|
|
response=dict()
|
|
|
|
))
|
|
|
|
return transform(commands)
|
|
|
|
|
|
|
|
|
2017-01-05 03:52:56 +01:00
|
|
|
def run_commands(module, commands, check_rc=True):
|
|
|
|
responses = list()
|
2017-02-14 02:20:44 +01:00
|
|
|
commands = to_commands(to_list(commands))
|
|
|
|
for cmd in commands:
|
2017-02-03 04:10:14 +01:00
|
|
|
cmd = module.jsonify(cmd)
|
2017-02-13 16:22:14 +01:00
|
|
|
rc, out, err = exec_command(module, cmd)
|
2017-01-05 03:52:56 +01:00
|
|
|
if check_rc and rc != 0:
|
|
|
|
module.fail_json(msg=err, rc=rc)
|
|
|
|
responses.append(out)
|
|
|
|
return responses
|
|
|
|
|
|
|
|
def load_config(module, commands):
|
|
|
|
|
2017-02-13 16:22:14 +01:00
|
|
|
rc, out, err = exec_command(module, 'configure terminal')
|
2017-01-05 03:52:56 +01:00
|
|
|
if rc != 0:
|
|
|
|
module.fail_json(msg='unable to enter configuration mode', err=err)
|
|
|
|
|
2017-02-13 16:22:14 +01:00
|
|
|
for command in to_list(commands):
|
2017-01-05 03:52:56 +01:00
|
|
|
if command == 'end':
|
|
|
|
continue
|
2017-02-13 16:22:14 +01:00
|
|
|
rc, out, err = exec_command(module, command)
|
2017-01-05 03:52:56 +01:00
|
|
|
if rc != 0:
|
|
|
|
module.fail_json(msg=err, command=command, rc=rc)
|
|
|
|
|
2017-02-13 16:22:14 +01:00
|
|
|
exec_command(module, 'end')
|