ansible/test/integration/targets/ios_system/tests/cli/set_hostname.yaml
Nathaniel Case cb1b705218
ios integration tests to network_cli (#33920)
* Preliminary steps

* Fix Python3 network_cli ios

* Add connection to debug strings

* Fix ios confirm prompt by way of optional newline

Also update ios_user delete tests
2017-12-20 09:03:29 -05:00

40 lines
730 B
YAML

---
- debug: msg="START cli/set_hostname.yaml on connection={{ ansible_connection }}"
- name: setup
ios_config:
lines: hostname switch
match: none
authorize: yes
become: yes
- name: configure hostname
ios_system:
hostname: foo
authorize: yes
become: yes
register: result
- assert:
that:
- "result.changed == true"
- name: verify hostname
ios_system:
hostname: foo
authorize: yes
become: yes
register: result
- assert:
that:
- "result.changed == false"
- name: teardown
ios_config:
lines: "hostname {{ inventory_hostname }}"
match: none
authorize: yes
become: yes
- debug: msg="END cli/set_hostname.yaml on connection={{ ansible_connection }}"