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.
34 lines
1.1 KiB
YAML
34 lines
1.1 KiB
YAML
6 years ago
|
---
|
||
|
- debug: msg="START cli/diff.yaml on connection={{ ansible_connection }}"
|
||
|
|
||
|
- name: setup hostname
|
||
|
nxos_config:
|
||
|
lines: hostname switch
|
||
|
|
||
|
- name: nxos_config diff against retrieved config
|
||
|
nxos_config:
|
||
|
diff_against: intended
|
||
|
intended_config: "{{ lookup('file', '{{ role_path }}/templates/basic/intended_running_config') }}"
|
||
|
diff: true
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "'hostname an-nxos9k-01.ansible.com' in result['diff']['after']"
|
||
|
- "'hostname switch' in result['diff']['before']"
|
||
|
|
||
|
- name: nxos_config diff against provided running_config
|
||
|
nxos_config:
|
||
|
diff_against: intended
|
||
|
intended_config: "{{ lookup('file', '{{ role_path }}/templates/basic/intended_running_config') }}"
|
||
|
running_config: "{{ lookup('file', '{{ role_path }}/templates/basic/base_running_config') }}"
|
||
|
diff: true
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "'hostname an-nxos9k-01.ansible.com' in result['diff']['after']"
|
||
|
- "'hostname an-nxos9k-02.ansible.com' in result['diff']['before']"
|
||
|
|
||
|
- debug: msg="END cli/diff.yaml on connection={{ ansible_connection }}"
|