ansible/mail.yml

23 lines
246 B
YAML
Raw Permalink Normal View History

---
- hosts:
- localhost
become: yes
tasks:
- name: Install passlib
package:
name: py39-passlib
state: present
- hosts:
- mail
become: yes
roles:
- dovecot
- rspamd
- postfix
2021-01-31 19:45:58 -06:00
- mlmmj