ansible-msmtp-mailer/tasks/setup-rocky-9.yml

18 lines
340 B
YAML
Raw Normal View History

2023-03-03 19:58:41 +00:00
---
2023-11-24 17:48:57 +00:00
- name: Fix msmtpd SELinux type context for msmtpd as a service
community.general.sefcontext:
target: '/usr/bin/msmtpd'
setype: bin_t
state: present
2023-03-03 19:58:41 +00:00
- name: Install msmtp
yum:
name:
- msmtp
- s-nail
state: present
notify:
- test mail
- restart msmtpd
when: ansible_os_family == "RedHat"