ansible-workshop/playbooks/ping.yml

8 lines
120 B
YAML

---
- name: Ping all hosts
hosts: all
gather_facts: false
tasks:
- name: Ping
ansible.builtin.ping: {}