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.
ansible/test/integration/targets/nxos_smoke/tasks/main.yaml

15 lines
424 B
YAML

---
# Some of the tests in this suite change the hostname to switch.
# This block/always ensures the hostname gets changed back to
# the correct name.
- block:
- { include: cli.yaml, tags: ['cli'] }
- { include: nxapi.yaml, tags: ['nxapi'] }
always:
- name: "Change hostname back to {{ inventory_hostname_short }}"
nxos_config:
lines:
- "hostname {{ inventory_hostname_short }}"
match: none