ansible/test/integration/targets/eos_config/tests/cli/config.yaml
John R Barker e0cc7b3415 Migrate Network Tests into ansible/ansible (#18233)
* Docs Networking tests

* Copy networking tests from test-network-modules

* Networking transport settings - group_vars

* Network playbooks

* Debug should be off by default

* Update nxos.yaml

* Remove items from top level

* Use dependencies, not pre-tasks

* Remove trailing blank lines

* Remove backup files

* newlines
2016-10-28 19:50:29 +01:00

46 lines
939 B
YAML

---
- debug: msg="START cli/config.yaml"
- name: setup
eos_config:
lines: hostname {{ inventory_hostname }}
match: none
provider: "{{ cli }}"
- name: get current running-config
eos_command:
commands: show running-config
provider: "{{ cli }}"
register: config
- name: configure hostname
eos_config:
lines: hostname foo
config: "{{ config.stdout[0] }}"
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == true"
- "'hostname foo' in result.updates"
- name: configure hostname again
eos_config:
lines: hostname foo
config: "{{ config.stdout[0] }}"
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == false"
- "'hostname foo' in result.updates"
- name: teardown
eos_config:
lines: hostname {{ inventory_hostname }}
match: none
provider: "{{ cli }}"
- debug: msg="END cli/config.yaml"