ansible/mail.yml

23 lines
246 B
YAML
Raw 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-02-01 02:45:58 +01:00
- mlmmj