Files
verver-deployment/ansible/playbook-swt-deployment.yml
2018-04-27 01:41:53 +02:00

23 lines
430 B
YAML

---
#general playbook
#global handlers file: handlers/main.yml
#check connection to all hosts
- hosts: all
gather_facts: no
become: true
tasks:
- name: ping all hosts
action: ping
# talk to all hosts just so we can learn about them
- hosts: all
tasks:
- group_by: key={{ ansible_distribution | lower }}
- hosts: swt
roles:
- docker-swt-deployment-local
handlers:
- include: handlers/main.yml