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.
52 lines
1002 B
YAML
52 lines
1002 B
YAML
---
|
|
- debug: msg="START cli/config.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: Setup
|
|
eos_config:
|
|
lines: no management api http-commands
|
|
match: none
|
|
provider: "{{ cli }}"
|
|
become: yes
|
|
|
|
- name: Get running-config
|
|
eos_command:
|
|
commands: show running-config
|
|
provider: "{{ cli }}"
|
|
become: yes
|
|
register: config
|
|
|
|
- name: Set config
|
|
eos_eapi:
|
|
config: "{{ config.stdout[0] }}"
|
|
provider: "{{ cli }}"
|
|
become: yes
|
|
register: config
|
|
|
|
- name: Ensure that this triggered a change
|
|
assert:
|
|
that:
|
|
- "config.changed == true"
|
|
|
|
#---
|
|
- name: Get running-config again
|
|
eos_command:
|
|
commands: show running-config
|
|
provider: "{{ cli }}"
|
|
become: yes
|
|
register: config
|
|
|
|
- name: Set config
|
|
eos_eapi:
|
|
config: "{{ config.stdout[0] }}"
|
|
provider: "{{ cli }}"
|
|
become: yes
|
|
register: config
|
|
|
|
|
|
- name: Idempotency check
|
|
assert:
|
|
that:
|
|
- "config.changed == false"
|
|
|
|
- debug: msg="END cli/config.yaml on connection={{ ansible_connection }}"
|