diff options
author | Bradley A. Thornton <bthornto@thethorntons.net> | 2019-08-16 11:45:39 -0700 |
---|---|---|
committer | Bradley A. Thornton <bthornto@thethorntons.net> | 2019-08-16 11:45:39 -0700 |
commit | 6a2aa3b8adaf9dd220916e42ec65904820d64092 (patch) | |
tree | 391360212f87a5d815f91e05205f38f7c733a10a /test/integration/targets/vyos_command | |
parent | 83a80f9f9df748b10eaa36dd3aab4592aaf40b28 (diff) | |
download | vyos.vyos-6a2aa3b8adaf9dd220916e42ec65904820d64092.tar.gz vyos.vyos-6a2aa3b8adaf9dd220916e42ec65904820d64092.zip |
based on ansible/ansible e7a8e4805349aec2d8a9538f544ad9e29b2e6318
Diffstat (limited to 'test/integration/targets/vyos_command')
-rw-r--r-- | test/integration/targets/vyos_command/tests/cli/cli_command.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/integration/targets/vyos_command/tests/cli/cli_command.yaml b/test/integration/targets/vyos_command/tests/cli/cli_command.yaml index caeb202..08a7675 100644 --- a/test/integration/targets/vyos_command/tests/cli/cli_command.yaml +++ b/test/integration/targets/vyos_command/tests/cli/cli_command.yaml @@ -4,7 +4,7 @@ - block: - name: get output for single command - cli_command: + network.cli.cli_command: command: show version register: result @@ -14,7 +14,7 @@ - "result.stdout is defined" - name: send invalid command - cli_command: + network.cli.cli_command: command: 'show foo' register: result ignore_errors: yes @@ -27,7 +27,7 @@ - block: - name: test failure for local connection - cli_command: + network.cli.cli_command: command: show version register: result ignore_errors: yes |