Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix nxos_vtp_version test #57358

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -21,6 +21,11 @@
provider: "{{ connection }}"
state: enabled

- name: configure supporting vtp domain
nxos_vtp_domain:
domain: foo
provider: "{{ connection }}"

- name: configure vtp version
nxos_vtp_version: &configure
version: 2
Expand All @@ -30,7 +35,7 @@
- assert: &true
that:
- "result.changed == true"

- name: "Conf Idempotence"
nxos_vtp_version: *configure
register: result
Expand All @@ -39,7 +44,7 @@
that:
- "result.changed == false"

when: vtp_run
when: vtp_run | bool

always:
- name: disable feature vtp
Expand Down