ansible-roles/redis/tasks/default-log2mail.yml

30 lines
724 B
YAML

---
- name: log2mail config is present
ansible.builtin.blockinfile:
dest: /etc/log2mail/config/redis.conf
owner: log2mail
group: adm
mode: "0640"
create: yes
marker: "# {mark} ANSIBLE MANAGED RULES FOR DEFAULT INSTANCE"
block: |
file = {{ redis_log_dir }}/redis-server.log
pattern = "Cannot allocate memory"
mailto = {{ log2mail_alert_email or general_alert_email | mandatory }}
template = /etc/log2mail/mail
notify: restart log2mail
tags:
- redis
- log2mail
- name: log2mail user is in redis group
ansible.builtin.user:
name: log2mail
groups: redis
append: yes
state: present
notify: restart log2mail
tags:
- redis
- log2mail