Don't add the trap if it is present or commented

This commit is contained in:
Jérémy Lecour 2017-10-17 18:07:51 +02:00 committed by Jérémy Lecour
parent beff333a1a
commit b7cede7654
1 changed files with 7 additions and 6 deletions

View File

@ -1,15 +1,16 @@
---
- name: is evomaintenance installed?
stat:
path: "/usr/share/scripts/evomaintenance.sh"
register: evomaintenance_script
check_mode: no
- name: search profile for presence of evomaintenance
command: 'grep -q "trap.*sudo.*evomaintenance.sh"'
changed_when: False
failed_when: False
register: grep_profile_evomaintenance
# Don't add the trap if it is present or commented
- name: "Add evomaintenance trap for '{{ user.name }}'"
lineinfile:
state: present
dest: '/home/{{ user.name }}/.profile'
insertafter: EOF
line: 'trap "sudo /usr/share/scripts/evomaintenance.sh" 0'
when: evomaintenance_script.stat.exists
when: grep_profile_evomaintenance.rc != 0