mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-02 23:31:25 -07:00
Add iosxr changes for Python3 (#24605)
* Add iosxr changes for Python3 Make `execute_command` arguments and its return value complaint to PY3 changes made in PR #24431 * Fix CI issue
This commit is contained in:
parent
9a5a61bdca
commit
f4e1dc503b
3 changed files with 24 additions and 22 deletions
|
@ -26,6 +26,7 @@
|
||||||
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
# 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.
|
# USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#
|
#
|
||||||
|
from ansible.module_utils._text import to_text
|
||||||
from ansible.module_utils.basic import env_fallback, return_values
|
from ansible.module_utils.basic import env_fallback, return_values
|
||||||
from ansible.module_utils.network_common import to_list, ComplexList
|
from ansible.module_utils.network_common import to_list, ComplexList
|
||||||
from ansible.module_utils.connection import exec_command
|
from ansible.module_utils.connection import exec_command
|
||||||
|
@ -42,18 +43,19 @@ iosxr_argument_spec = {
|
||||||
'provider': dict(type='dict')
|
'provider': dict(type='dict')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
def check_args(module, warnings):
|
def check_args(module, warnings):
|
||||||
provider = module.params['provider'] or {}
|
provider = module.params['provider'] or {}
|
||||||
for key in iosxr_argument_spec:
|
for key in iosxr_argument_spec:
|
||||||
if key != 'provider' and module.params[key]:
|
if key != 'provider' and module.params[key]:
|
||||||
warnings.append('argument %s has been deprecated and will be '
|
warnings.append('argument %s has been deprecated and will be removed in a future version' % key)
|
||||||
'removed in a future version' % key)
|
|
||||||
|
|
||||||
if provider:
|
if provider:
|
||||||
for param in ('password',):
|
for param in ('password',):
|
||||||
if provider.get(param):
|
if provider.get(param):
|
||||||
module.no_log_values.update(return_values(provider[param]))
|
module.no_log_values.update(return_values(provider[param]))
|
||||||
|
|
||||||
|
|
||||||
def get_config(module, flags=[]):
|
def get_config(module, flags=[]):
|
||||||
cmd = 'show running-config '
|
cmd = 'show running-config '
|
||||||
cmd += ' '.join(flags)
|
cmd += ' '.join(flags)
|
||||||
|
@ -64,8 +66,8 @@ def get_config(module, flags=[]):
|
||||||
except KeyError:
|
except KeyError:
|
||||||
rc, out, err = exec_command(module, cmd)
|
rc, out, err = exec_command(module, cmd)
|
||||||
if rc != 0:
|
if rc != 0:
|
||||||
module.fail_json(msg='unable to retrieve current config', stderr=err)
|
module.fail_json(msg='unable to retrieve current config', stderr=to_text(err, errors='surrogate_or_strict'))
|
||||||
cfg = str(out).strip()
|
cfg = to_text(out, errors='surrogate_or_strict').strip()
|
||||||
_DEVICE_CONFIGS[cmd] = cfg
|
_DEVICE_CONFIGS[cmd] = cfg
|
||||||
return cfg
|
return cfg
|
||||||
|
|
||||||
|
@ -87,15 +89,16 @@ def run_commands(module, commands, check_rc=True):
|
||||||
cmd = module.jsonify(cmd)
|
cmd = module.jsonify(cmd)
|
||||||
rc, out, err = exec_command(module, cmd)
|
rc, out, err = exec_command(module, cmd)
|
||||||
if check_rc and rc != 0:
|
if check_rc and rc != 0:
|
||||||
module.fail_json(msg=err, rc=rc)
|
module.fail_json(msg=to_text(err, errors='surrogate_or_strict'), rc=rc)
|
||||||
responses.append(out)
|
responses.append(to_text(out, errors='surrogate_or_strict'))
|
||||||
return responses
|
return responses
|
||||||
|
|
||||||
|
|
||||||
def load_config(module, commands, warnings, commit=False, replace=False, comment=None):
|
def load_config(module, commands, warnings, commit=False, replace=False, comment=None):
|
||||||
|
|
||||||
rc, out, err = exec_command(module, 'configure terminal')
|
rc, out, err = exec_command(module, 'configure terminal')
|
||||||
if rc != 0:
|
if rc != 0:
|
||||||
module.fail_json(msg='unable to enter configuration mode', err=err)
|
module.fail_json(msg='unable to enter configuration mode', err=to_text(err, errors='surrogate_or_strict'))
|
||||||
|
|
||||||
failed = False
|
failed = False
|
||||||
for command in to_list(commands):
|
for command in to_list(commands):
|
||||||
|
@ -109,7 +112,7 @@ def load_config(module, commands, warnings, commit=False, replace=False, comment
|
||||||
|
|
||||||
if failed:
|
if failed:
|
||||||
exec_command(module, 'abort')
|
exec_command(module, 'abort')
|
||||||
module.fail_json(msg=err, commands=commands, rc=rc)
|
module.fail_json(msg=to_text(err, errors='surrogate_or_strict'), commands=commands, rc=rc)
|
||||||
|
|
||||||
rc, diff, err = exec_command(module, 'show commit changes diff')
|
rc, diff, err = exec_command(module, 'show commit changes diff')
|
||||||
if rc != 0:
|
if rc != 0:
|
||||||
|
@ -128,4 +131,4 @@ def load_config(module, commands, warnings, commit=False, replace=False, comment
|
||||||
diff = None
|
diff = None
|
||||||
exec_command(module, cmd)
|
exec_command(module, cmd)
|
||||||
|
|
||||||
return diff
|
return to_text(diff, errors='surrogate_or_strict')
|
||||||
|
|
|
@ -25,27 +25,28 @@ import json
|
||||||
from ansible.plugins.terminal import TerminalBase
|
from ansible.plugins.terminal import TerminalBase
|
||||||
from ansible.errors import AnsibleConnectionFailure
|
from ansible.errors import AnsibleConnectionFailure
|
||||||
|
|
||||||
|
|
||||||
class TerminalModule(TerminalBase):
|
class TerminalModule(TerminalBase):
|
||||||
|
|
||||||
terminal_stdout_re = [
|
terminal_stdout_re = [
|
||||||
re.compile(r"[\r\n]?[\w+\-\.:\/\[\]]+(?:\([^\)]+\)){,3}(?:>|#) ?$"),
|
re.compile(br"[\r\n]?[\w+\-\.:\/\[\]]+(?:\([^\)]+\)){,3}(?:>|#) ?$"),
|
||||||
re.compile(r"\[\w+\@[\w\-\.]+(?: [^\]])\] ?[>#\$] ?$"),
|
re.compile(br"\[\w+\@[\w\-\.]+(?: [^\]])\] ?[>#\$] ?$"),
|
||||||
re.compile(r']]>]]>[\r\n]?')
|
re.compile(br']]>]]>[\r\n]?')
|
||||||
]
|
]
|
||||||
|
|
||||||
terminal_stderr_re = [
|
terminal_stderr_re = [
|
||||||
re.compile(r"% ?Error"),
|
re.compile(br"% ?Error"),
|
||||||
re.compile(r"% ?Bad secret"),
|
re.compile(br"% ?Bad secret"),
|
||||||
re.compile(r"invalid input", re.I),
|
re.compile(br"invalid input", re.I),
|
||||||
re.compile(r"(?:incomplete|ambiguous) command", re.I),
|
re.compile(br"(?:incomplete|ambiguous) command", re.I),
|
||||||
re.compile(r"connection timed out", re.I),
|
re.compile(br"connection timed out", re.I),
|
||||||
re.compile(r"[^\r\n]+ not found", re.I),
|
re.compile(br"[^\r\n]+ not found", re.I),
|
||||||
re.compile(r"'[^']' +returned error code: ?\d+"),
|
re.compile(br"'[^']' +returned error code: ?\d+"),
|
||||||
]
|
]
|
||||||
|
|
||||||
def on_open_shell(self):
|
def on_open_shell(self):
|
||||||
try:
|
try:
|
||||||
for cmd in ['terminal length 0', 'terminal width 512', 'terminal exec prompt no-timestamp']:
|
for cmd in (b'terminal length 0', b'terminal width 512', b'terminal exec prompt no-timestamp'):
|
||||||
self._exec_cli_command(cmd)
|
self._exec_cli_command(cmd)
|
||||||
except AnsibleConnectionFailure:
|
except AnsibleConnectionFailure:
|
||||||
raise AnsibleConnectionFailure('unable to set terminal parameters')
|
raise AnsibleConnectionFailure('unable to set terminal parameters')
|
||||||
|
|
|
@ -67,7 +67,6 @@ lib/ansible/module_utils/gce.py
|
||||||
lib/ansible/module_utils/gcp.py
|
lib/ansible/module_utils/gcp.py
|
||||||
lib/ansible/module_utils/infinibox.py
|
lib/ansible/module_utils/infinibox.py
|
||||||
lib/ansible/module_utils/ios.py
|
lib/ansible/module_utils/ios.py
|
||||||
lib/ansible/module_utils/iosxr.py
|
|
||||||
lib/ansible/module_utils/json_utils.py
|
lib/ansible/module_utils/json_utils.py
|
||||||
lib/ansible/module_utils/junos.py
|
lib/ansible/module_utils/junos.py
|
||||||
lib/ansible/module_utils/known_hosts.py
|
lib/ansible/module_utils/known_hosts.py
|
||||||
|
@ -847,7 +846,6 @@ lib/ansible/plugins/strategy/linear.py
|
||||||
lib/ansible/plugins/terminal/asa.py
|
lib/ansible/plugins/terminal/asa.py
|
||||||
lib/ansible/plugins/terminal/eos.py
|
lib/ansible/plugins/terminal/eos.py
|
||||||
lib/ansible/plugins/terminal/ios.py
|
lib/ansible/plugins/terminal/ios.py
|
||||||
lib/ansible/plugins/terminal/iosxr.py
|
|
||||||
lib/ansible/plugins/terminal/junos.py
|
lib/ansible/plugins/terminal/junos.py
|
||||||
lib/ansible/plugins/terminal/nxos.py
|
lib/ansible/plugins/terminal/nxos.py
|
||||||
lib/ansible/plugins/terminal/vyos.py
|
lib/ansible/plugins/terminal/vyos.py
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue