16 lines
479 B
YAML
Executable File
16 lines
479 B
YAML
Executable File
#!/usr/bin/env ansible-playbook
|
|
---
|
|
# Deploy Mailman3
|
|
- hosts: mailman
|
|
vars:
|
|
certbot: "{{ loc_certbot | default(glob_certbot | default([])) }}"
|
|
mailman3: "{{ glob_mailman3 | default({}) | combine(loc_mailman3 | default({})) }}"
|
|
nginx: "{{ glob_nginx | default({}) | combine(loc_nginx | default({})) }}"
|
|
opendkim: "{{ glob_opendkim | combine(loc_opendkim | default({})) }}"
|
|
roles:
|
|
- certbot
|
|
- nginx
|
|
- mailman3
|
|
- postfix-mailman3
|
|
- opendkim
|