mirror of https://github.com/ansible/ansible.git
Fix nxos_system tests (#36201)
* Fix nxos_system tests * Add debug connection plugin info * Move sanity test under commonpull/32318/merge
parent
ff922ac2ad
commit
5b5d24631a
@ -0,0 +1,36 @@
|
||||
---
|
||||
- debug: msg="START connection={{ ansible_connection }}/sanity.yaml"
|
||||
- debug: msg="Using provider={{ connection.transport }}"
|
||||
when: ansible_connection == "local"
|
||||
|
||||
- block:
|
||||
- name: configure hostname and domain-name
|
||||
nxos_system: &hostname
|
||||
hostname: "{{ inventory_hostname_short }}"
|
||||
domain_name: test.example.com
|
||||
provider: "{{ connection }}"
|
||||
|
||||
- name: remove configuration
|
||||
nxos_system:
|
||||
state: absent
|
||||
provider: "{{ connection }}"
|
||||
|
||||
- name: configure name servers
|
||||
nxos_system:
|
||||
name_servers:
|
||||
- 8.8.8.8
|
||||
- 8.8.4.4
|
||||
provider: "{{ connection }}"
|
||||
|
||||
- name: configure name servers with VRF support
|
||||
nxos_system:
|
||||
name_servers:
|
||||
- { server: 8.8.8.8, vrf: management }
|
||||
- { server: 8.8.4.4, vrf: management }
|
||||
provider: "{{ connection }}"
|
||||
|
||||
always:
|
||||
- name: Re-configure hostname
|
||||
nxos_system: *hostname
|
||||
|
||||
- debug: msg="END connection={{ ansible_connection }}/sanity.yaml"
|
Loading…
Reference in New Issue