ansible-playbooks/ubuntu/site.yml

23 lines
305 B
YAML

---
- name: apply common configuration to all nodes
hosts: unsetup
user: root
roles:
- common
- name: install PHP-FPM to required nodes
hosts: php
user: root
roles:
- php
- name: install Icinga 2 for client usage
hosts: icinga-clients
user: root
roles:
- icinga-client