packweb-apache: comment cron task instead of remove it and don't remove buildstatic.sh

This commit is contained in:
Victor LABORIE 2017-11-06 11:51:01 +01:00
parent 6f0fb57595
commit 6d2506a0ce
1 changed files with 5 additions and 6 deletions

View File

@ -47,11 +47,10 @@
regexp: '-config=awstats'
line: "10 */6 * * * root umask 033; [ -x /usr/lib/cgi-bin/awstats.pl -a -f /etc/awstats/awstats.conf -a -r /var/log/apache2/access.log ] && /usr/lib/cgi-bin/awstats.pl -config=awstats -update >/dev/null"
- name: Remove default awstat cron's tasks
- name: Comment default awstat cron's tasks
lineinfile:
dest: /etc/cron.d/awstats
regexp: "{{ item }}"
state: absent
with_items:
- 'update\.sh'
- 'buildstatic\.sh'
regexp: "(?i)^([^#]*update\\.sh.*)"
line: '#\1'
backrefs: yes
state: present