This repository has been archived on 2020-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
ansible-role-warehost/mailserver/tasks/install_archlinux.yml

13 lines
208 B
YAML

---
- name: Install dependencies
pacman: name={{item}} state=present
with_items:
- postfix
- dovecot
- pigeonhole
- spamassassin
- procmail
notify:
- restart postfix
- restart dovecot