1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_rspamd.git synced 2024-08-16 17:09:51 +02:00
ansible_role_rspamd/tasks/main.yml
2022-04-07 23:27:51 +02:00

18 lines
424 B
YAML

---
- include_tasks: versioncheck.yml
when: submodules_versioncheck|bool
- name: add apt repos and install rspamd
include_tasks: packages.yml
when: ansible_os_family == 'Debian'
- name: configure rspamd
include_tasks: configure.yml
- name: rspamd dkim signing
include_tasks: dkim.yml
when: rspamd__configure_dkim | bool
- name: redis backend
include_tasks: redis.yml
when: rspamd__configure_redis | bool