diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2020-05-21 03:42:52 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2020-05-21 03:42:54 +0200 |
commit | 6fb829e49d421de9abac41325f5089357bf27f82 (patch) | |
tree | 0223d7738c877ad13c103ca3130f59c992ce1d50 /roles/out/tasks | |
parent | 6d1daa0424c168eae4bfa9f6772add3f77ec506f (diff) |
Postfix: Install -lmdb in all roles using db=lmdb.
And drop -ldap from all roles other than MX. -lmdb is included in
roles/common but it can be helpful to have it individual roles as well
as they can be run individually.
Diffstat (limited to 'roles/out/tasks')
-rw-r--r-- | roles/out/tasks/main.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/roles/out/tasks/main.yml b/roles/out/tasks/main.yml index 0e64443..48c162a 100644 --- a/roles/out/tasks/main.yml +++ b/roles/out/tasks/main.yml @@ -1,5 +1,9 @@ - name: Install Postfix - apt: pkg=postfix + apt: pkg={{ packages }} + vars: + packages: + - postfix + - postfix-lmdb - name: Configure Postfix template: src=etc/postfix/{{ item }}.j2 |