diff --git a/roles/base/tasks/mail.yml b/roles/base/tasks/mail.yml index 44e1fd8..2385473 100644 --- a/roles/base/tasks/mail.yml +++ b/roles/base/tasks/mail.yml @@ -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