Do not remove line that would have a customized subject

This commit is contained in:
Jérémy Dubois 2020-10-14 16:32:32 +02:00
parent 213e4a7bcd
commit 7ecf7be4a4

View file

@ -1,4 +1,13 @@
---
- name: Fetch rc.local content
command: "grep -v '^#' /etc/rc.local"
check_mode: false
register: rclocal_content
failed_when: false
changed_when: false
tags:
- misc
- name: Configure rc.local
lineinfile:
path: /etc/rc.local
@ -6,6 +15,8 @@
'date | mail -s "boot/reboot of $(hostname -s)" {{ general_alert_email }}'
insertbefore: 'echo'
create: true
when:
- not (rclocal_content.stdout | regex_search('date \| mail -s (\"|\')boot/reboot of \$\(hostname -s\)'))
tags:
- misc