19 lines
338 B
YAML
19 lines
338 B
YAML
---
|
|
- name: Ensure group "msmtp" exists
|
|
group:
|
|
name: msmtp
|
|
state: present
|
|
when: ansible_os_family == "RedHat"
|
|
|
|
- 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"
|