From 392d9e2aa6de34f00614e55d047382516811bd34 Mon Sep 17 00:00:00 2001 From: Peter Sprygada Date: Wed, 1 Mar 2017 13:36:03 -0600 Subject: [PATCH] updates prepare_nxos_tests to use nxos_nxapi module (#22150) replaces nxos_config with nxos_nxapi --- test/integration/targets/prepare_nxos_tests/tasks/main.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/test/integration/targets/prepare_nxos_tests/tasks/main.yml b/test/integration/targets/prepare_nxos_tests/tasks/main.yml index 429ee68c5a..ec806bd057 100644 --- a/test/integration/targets/prepare_nxos_tests/tasks/main.yml +++ b/test/integration/targets/prepare_nxos_tests/tasks/main.yml @@ -1,5 +1,6 @@ - name: enable nxapi on remote device - nxos_config: - lines: - - feature nxapi + nxos_nxapi: + http: yes + sandbox: yes + state: present provider: "{{ cli }}"