You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
294 B
27 lines
294 B
---
|
|
- hosts: service
|
|
remote_user: docker
|
|
sudo: yes
|
|
gather_facts: no
|
|
vars:
|
|
user: "docker"
|
|
|
|
|
|
|
|
tasks:
|
|
|
|
|
|
|
|
# ping async
|
|
- name: pingtome
|
|
command: ping 10.80.0.2
|
|
async: 30
|
|
poll: 0
|
|
|
|
|
|
|
|
|
|
- name: Refresh connection
|
|
meta: clear_host_errors
|
|
|
|
|
|
|