Skip to content
Snippets Groups Projects
Commit d23d820c authored by Baptiste DE RENZO's avatar Baptiste DE RENZO
Browse files

Merge branch 't40057-disable-munin-cron-email' into 'main'

Disable munin cron email, Refs #40057

See merge request sys/ansible-public!106
parents 516bc17d cb9dbbc8
No related branches found
No related tags found
No related merge requests found
---
- name: 'Disable default cron email'
ansible.builtin.lineinfile:
path: /etc/cron.d/munin-node
regexp: '^MAILTO=root$'
line: '#MAILTO=root'
state: present
backrefs: yes
- ansible.builtin.import_role:
name: "nudgis/shared"
tasks_from: "firewall_rules_files.yml"
......
......@@ -13,6 +13,14 @@
mode: "preserve"
remote_src: true
- name: 'Disable default cron email'
ansible.builtin.lineinfile:
path: /etc/cron.d/munin-node
regexp: '^MAILTO=root$'
line: '#MAILTO=root'
state: present
backrefs: yes
- ansible.builtin.import_role:
name: "nudgis/shared"
tasks_from: "firewall_rules_files.yml"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment