Added simple ping playbook
This commit is contained in:
parent
685673d2d8
commit
407c48780a
1 changed files with 7 additions and 0 deletions
7
checks/ping.yml
Normal file
7
checks/ping.yml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
- name: Ping every host
|
||||
hosts: all
|
||||
gather_facts: false
|
||||
tasks:
|
||||
- name: Send an Ansible ping
|
||||
ansible.builtin.ping: {}
|
||||
Loading…
Reference in a new issue