diff options
author | Nathaniel Case <ncase@redhat.com> | 2019-10-24 21:01:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-24 21:01:05 +0200 |
commit | 7f5d1ab2b730f1a2cbe7b4d578ec72a49636a282 (patch) | |
tree | 8614793f0dc6099853d591504b0538c9d8e45af8 /test/integration/targets/eos_linkagg | |
parent | Reword the ticket stub for collections (#63917) (diff) | |
download | ansible-7f5d1ab2b730f1a2cbe7b4d578ec72a49636a282.tar.xz ansible-7f5d1ab2b730f1a2cbe7b4d578ec72a49636a282.zip |
Removed in 29 (#63680)
* Eh, 2.10 is close enough
* drop top-level authorize
* Remove from documentation
* Remove load_params
* Centralize this junos thing
* Fixup user modules
* I'm 95% sure this did not do what it was supposed to
* nxos_hsrp: I don't think this is an actual module parameter
* Try to fix junos_package tests
* Move local params to provider
* Promote 'timeout' to a real parameter for eos_eapi
* Don't assume provider exists?
* move another timeout
* Provider now always has auth_pass
* Fix junos tests to avoid NameErrors
Diffstat (limited to 'test/integration/targets/eos_linkagg')
-rw-r--r-- | test/integration/targets/eos_linkagg/tests/cli/basic.yaml | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/test/integration/targets/eos_linkagg/tests/cli/basic.yaml b/test/integration/targets/eos_linkagg/tests/cli/basic.yaml index 9986b61ec9..e49dff8697 100644 --- a/test/integration/targets/eos_linkagg/tests/cli/basic.yaml +++ b/test/integration/targets/eos_linkagg/tests/cli/basic.yaml @@ -6,7 +6,6 @@ lines: - no interface port-channel 20 - no interface port-channel 100 - authorize: yes provider: "{{ cli }}" become: yes @@ -14,7 +13,6 @@ eos_config: lines: - no channel-group 20 - authorize: yes provider: "{{ cli }}" parents: "{{ item }}" loop: @@ -26,7 +24,6 @@ eos_linkagg: &create group: 20 state: present - authorize: yes provider: "{{ cli }}" become: yes register: result @@ -52,7 +49,6 @@ members: - Ethernet1 - Ethernet2 - authorize: yes provider: "{{ cli }}" become: yes register: result @@ -80,7 +76,6 @@ mode: active members: - Ethernet2 - authorize: yes provider: "{{ cli }}" become: yes register: result @@ -104,7 +99,6 @@ eos_linkagg: &remove group: 20 state: absent - authorize: yes provider: "{{ cli }}" become: yes register: result @@ -128,7 +122,6 @@ aggregate: - { group: 20, min_links: 3 } - { group: 100, min_links: 4 } - authorize: yes provider: "{{ cli }}" become: yes register: result @@ -155,7 +148,6 @@ aggregate: - { group: 20, min_links: 3 } - { group: 100, min_links: 4 } - authorize: yes provider: "{{ cli }}" state: absent become: yes @@ -181,7 +173,6 @@ lines: - no interface port-channel 20 - no interface port-channel 100 - authorize: yes provider: "{{ cli }}" become: yes @@ -189,7 +180,6 @@ eos_config: lines: - no channel-group 20 - authorize: yes provider: "{{ cli }}" parents: "{{ item }}" become: yes |