We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b82d82d commit 7fb94e8Copy full SHA for 7fb94e8
netsim/ansible/tasks/readiness-check/vm-clab-ssh-check.yml
@@ -6,6 +6,7 @@
6
local_action:
7
module: shell
8
cmd: which sshpass
9
+ changed_when: False
10
run_once: True
11
any_errors_fatal: True
12
@@ -17,6 +18,7 @@
17
18
ssh -o StrictHostKeyChecking=no {{ netlab_ssh_args|default('') }} \
19
-o UserKnownHostsFile=/dev/null {{ ansible_user }}@{{ ansible_host }} \
20
'{{ netlab_check_command | default("show version") }}'
21
22
register: command_out
23
until: command_out.rc == 0
24
retries: "{{ netlab_check_retries | default(20) }}"
0 commit comments