forked from ISTI-ansible-roles/ansible-roles
clamav: remove, and not just empty, the broken signature files.
This commit is contained in:
parent
3d543e60e4
commit
50657d5f82
|
@ -34,13 +34,13 @@
|
|||
- name: Ensure that the clamd service is running and enabled
|
||||
service: name=clamd@scan state=started enabled=yes
|
||||
|
||||
- name: Wipe some signature files that are broken.
|
||||
copy: content="" dest={{ clamav_signatures_db_dir }}/{{ item }} force=yes
|
||||
- name: Remove some signature files that are broken.
|
||||
file: dest={{ clamav_signatures_db_dir }}/{{ item }} state=absent
|
||||
with_items: '{{ clamav_signatures_dbs_to_wipe }}'
|
||||
tags: [ 'clamav', 'clamav_clamd', 'clamav_config', 'clamav_signatures' ]
|
||||
|
||||
- name: Install a cron job that wipes the wrong signature files, just in case they reappear after an update
|
||||
cron: name="Wipe some clamav signature dbs that are broken" user=root special_time=hourly job="{% for db in clamav_signatures_dbs_to_wipe %}echo '' > {{ clamav_signatures_db_dir }}/{{ db }}{% if not loop.last %}; {% endif %}{% endfor %}"
|
||||
cron: name="Wipe some clamav signature dbs that are broken" user=root special_time=hourly job="{% for db in clamav_signatures_dbs_to_wipe %}/bin/rm -f {{ clamav_signatures_db_dir }}/{{ db }}{% if not loop.last %}; {% endif %}{% endfor %}"
|
||||
tags: [ 'clamav', 'clamav_clamd', 'clamav_config', 'clamav_signatures' ]
|
||||
|
||||
when: clamav_install | bool
|
||||
|
|
Loading…
Reference in New Issue