]> arthur.ath.cx Git - ansible-collection-boilerplate.git/blob - playbooks/ping.yml
how-to-release.md: Fix "git push" command
[ansible-collection-boilerplate.git] / playbooks / ping.yml
1 ---
2 # Connect to a system and run the Ansible "ping" module on it.
3 #
4 # Example:
5 # ./bin/ap ping -l example.host.name
6 #
7
8 - name: Ping system
9   any_errors_fatal: true
10   hosts: '{{target|default("all")}}'
11
12   tasks:
13
14     - name: Run the Ansible "ping" module
15       ansible.builtin.ping: