39 lines
770 B
YAML

---
- hosts: localhost
handlers:
- name: restart httpd
service:
name: httpd
state: restarted
- name: restart php-fpm
service:
name: php-fpm
state: restarted
vars:
mail_relay_host: smtp.gmail.com
mail_domain: gmeech.dyndns.org
tasks:
- include_tasks: assert-vars.yml
- include_tasks: disable-ipv6.yml
- include_tasks: hosts.yml
- include_tasks: inst-packages.yml
- include_tasks: misc.yml
- include_tasks: create-gilles-user.yml
- name: import postfix role
import_role:
name: role-postfix
- include_tasks: yum-check-update.yml
- include_tasks: update-hosts-file.yml
- name: import netdata role
import_role:
name: role-netdata
- include_tasks: inst-apache.yml