11 lines
367 B
YAML
Executable File
11 lines
367 B
YAML
Executable File
#!/usr/bin/env ansible-playbook
|
|
---
|
|
# Deploy dovecot server
|
|
- hosts: dovecot
|
|
vars:
|
|
certbot: '{{ glob_certbot | default({}) | combine(loc_certbot | default({})) }}'
|
|
ldap: '{{ glob_ldap | default({}) | combine(loc_ldap | default({})) }}'
|
|
dovecot: '{{ glob_dovecot | default({}) | combine(loc_dovecot | default({})) }}'
|
|
roles:
|
|
- certbot
|
|
- dovecot |