#!/usr/bin/env ansible-playbook
---
# Deploy dovecot server
- hosts: dovecot
  vars:
    certbot: '{{ loc_certbot | default(glob_certbot | default([])) }}'
    ldap: '{{ glob_ldap | default({}) | combine(loc_ldap | default({})) }}'
    dovecot: '{{ glob_dovecot | default({}) | combine(loc_dovecot | default({})) }}'
  roles:
    - certbot
    - dovecot