diff options
author | Ganesh Nalawade <ganesh634@gmail.com> | 2018-01-08 18:52:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-08 18:52:53 +0100 |
commit | 458cc38992df527b058813dfe99d04eed9c062c4 (patch) | |
tree | a2c64bb69f739ca3ea7ae776968a88221526b27f /test/integration/targets/junos_vrf | |
parent | Document descriptions updated to match UCS Manager online help. (#34581) (diff) | |
download | ansible-458cc38992df527b058813dfe99d04eed9c062c4.tar.xz ansible-458cc38992df527b058813dfe99d04eed9c062c4.zip |
Fix connection type in junos integration tests (#34583)
* Fix connection type in junos integration tests
* For find module in junos integration test
add connection type local and delegate task to localhost
* Fix review comment
Diffstat (limited to 'test/integration/targets/junos_vrf')
-rw-r--r-- | test/integration/targets/junos_vrf/tasks/netconf.yaml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/integration/targets/junos_vrf/tasks/netconf.yaml b/test/integration/targets/junos_vrf/tasks/netconf.yaml index 337b000896..24181dcf38 100644 --- a/test/integration/targets/junos_vrf/tasks/netconf.yaml +++ b/test/integration/targets/junos_vrf/tasks/netconf.yaml @@ -3,6 +3,7 @@ paths: "{{ role_path }}/tests/netconf" patterns: "{{ testcase }}.yaml" register: test_cases + connection: local - name: set test_items set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}" |