28 lines
546 B
YAML
28 lines
546 B
YAML
---
|
|
- hosts: localhost
|
|
|
|
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
|
|
|
|
- name: import postfix role
|
|
import_role:
|
|
name: role-postfix
|
|
|
|
- include_tasks: yum-check-update.yml
|
|
|
|
- name: import netdata role
|
|
import_role:
|
|
name: role-netdata
|
|
|
|
- name: import apache role
|
|
import_role:
|
|
name: role-apache
|
|
|