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

13 lines
219 B
YAML
Raw Permalink Normal View History

2023-03-03 19:58:41 +00:00
---
- 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"