mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
548 B
YAML
23 lines
548 B
YAML
7 years ago
|
---
|
||
|
- debug: msg="START ios_smoke cli/misc_tests.yaml on connection={{ ansible_connection }}"
|
||
|
|
||
|
# hit network.ios.ios- get_defaults_flag()
|
||
|
- name: setup
|
||
|
ios_config:
|
||
|
commands:
|
||
|
- no description
|
||
|
- shutdown
|
||
|
parents:
|
||
|
- interface Loopback999
|
||
|
match: none
|
||
|
provider: "{{ cli }}"
|
||
|
|
||
|
- name: configure device with defaults included
|
||
|
ios_config:
|
||
|
src: defaults/config.j2
|
||
|
defaults: yes
|
||
|
provider: "{{ cli }}"
|
||
|
register: result
|
||
|
|
||
|
- debug: msg="END ios_smoke cli/misc_tests.yaml on connection={{ ansible_connection }}"
|