0
0
Files
ansible-boilerplate/roles/common/tasks/main.yml
2018-08-14 18:35:59 +02:00

14 lines
202 B
YAML

---
#
# Tasks to be applied to all servers
#
- name: Check connectivity
ping:
data: alive
tags: check
# Add further tasks for the common role (applied to all servers) to this playbook...
...