Enable postfix/dovecot servers

This commit is contained in:
Jason Rothstein 2021-12-05 12:21:17 -06:00
parent 5d85ea4fd6
commit ace09e07e7
2 changed files with 16 additions and 0 deletions

View File

@ -15,6 +15,9 @@ roles:
- name: 'ensure_docker' - name: 'ensure_docker'
src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_docker.git' src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_docker.git'
version: 'master' version: 'master'
- name: 'ensure_dovecot'
src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_dovecot.git'
version: 'master'
- name: 'ensure_log_rotation' - name: 'ensure_log_rotation'
src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_log_rotation.git' src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_log_rotation.git'
version: 'master' version: 'master'
@ -30,6 +33,9 @@ roles:
- name: 'ensure_podman' - name: 'ensure_podman'
src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_podman.git' src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_podman.git'
version: 'master' version: 'master'
- name: 'ensure_postfix'
src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_postfix.git'
version: 'master'
- name: 'ensure_repo_epel' - name: 'ensure_repo_epel'
src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_repo_epel.git' src: 'git+https://git.fdragon.com/AnsibleRoles/ensure_repo_epel.git'
version: 'master' version: 'master'

View File

@ -23,6 +23,16 @@
gather_facts: 'yes' gather_facts: 'yes'
roles: roles:
- role: 'ensure_mariadb' - role: 'ensure_mariadb'
- name: 'smtp'
hosts: 'smtp'
gather_facts: 'yes'
roles:
- role: 'ensure_postfix'
- name: 'imap'
hosts: 'imap'
gather_facts: 'yes'
roles:
- role: 'ensure_dovecot'
- name: 'docker' - name: 'docker'
hosts: 'docker' hosts: 'docker'
gather_facts: 'yes' gather_facts: 'yes'