Nxos restore provider to nxapi tests (#41818)

* Quick and dirty sed to add provider

* Manually verify the rest of the cases

* Add missing provider
This commit is contained in:
Nathaniel Case 2018-07-02 09:43:51 -04:00 committed by GitHub
commit a197125954
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
127 changed files with 713 additions and 0 deletions

View file

@ -7,11 +7,13 @@
- name: enable feature vtp
nxos_feature:
feature: vtp
provider: "{{ connection }}"
state: enabled
- name: configure vtp version
nxos_vtp_version: &configure
version: 2
provider: "{{ connection }}"
register: result
- assert: &true
@ -30,6 +32,7 @@
- name: disable feature vtp
nxos_feature:
feature: vtp
provider: "{{ connection }}"
state: disabled
- debug: msg="END connection={{ ansible_connection }} nxos_vtp_version sanity test"