2e76c89910
* Update task definitions for network_cli * Add connection to debug messages * Specify connection for prepare task * pc won't be around for connection=network_cli * Assorted Python 3 fixes * Give default port if ansible_ssh_port missing * delegate -> connection * Extend error regex
12 lines
367 B
YAML
12 lines
367 B
YAML
---
|
|
|
|
- name: Ensure we have loopback 888 for testing
|
|
iosxr_config:
|
|
src: config.j2
|
|
connection: network_cli
|
|
|
|
# Some AWS hostnames can be longer than those allowed by the system we are testing
|
|
# Truncate the hostname
|
|
# http://jinja.pocoo.org/docs/2.9/templates/#truncate
|
|
- set_fact:
|
|
shorter_hostname: '{{ inventory_hostname_short| truncate(10, True, "") }}'
|