Browse Source

Merge pull request #407 from hippich/opendmarc-upgrade-problem

Couple issues with OpenDMARC on Debian 7:
Alex Payne 9 years ago
parent
commit
6d3c847253
1 changed files with 5 additions and 2 deletions
  1. 5
    2
      roles/mailserver/tasks/dmarc.yml

+ 5
- 2
roles/mailserver/tasks/dmarc.yml View File

@@ -1,5 +1,8 @@
1
-- name: Install OpenDMARC milter
2
-  apt: pkg=opendmarc state=installed update_cache=yes
1
+- name: Install OpenDMARC milter and related packages
2
+  apt: pkg={{ item }} state=installed update_cache=yes
3
+  with_items:
4
+      - python-mysqldb
5
+      - opendmarc
3 6
 
4 7
 - name: Copy OpenDMARC configuration file into place
5 8
   template: src=etc_opendmarc.conf.j2 dest=/etc/opendmarc.conf owner=root group=root

Loading…
Cancel
Save