ansible-msmtp-mailer/tasks/setup-rocky-8.yml
2024-06-06 21:48:59 +02:00

19 lines
383 B
YAML

---
- name: Fix msmtpd SELinux type context for msmtpd as a service
community.general.sefcontext:
target: '/usr/bin/msmtpd'
setype: bin_t
state: present
- name: Install msmtp
yum:
name:
- "{{ msmtp_rpm_file }}"
- mailx
state: present
disable_gpg_check: yes
notify:
- test mail
- restart msmtpd
when: ansible_os_family == "RedHat"