Merge "Add check to ClamAV task to prevent simeltaneous content updates"

This commit is contained in:
Zuul 2018-03-08 00:42:32 +00:00 committed by Gerrit Code Review
commit dc798c7979
1 changed files with 10 additions and 0 deletions

View File

@ -182,10 +182,20 @@
- misc
- V-72213
- name: Check if ClamAV update process is already running
shell: "ps -ef | egrep [f]reshclam -q"
register: freshclam_proc
changed_when: False
failed_when: False
check_mode: no
tags:
- always
- name: Update ClamAV database
command: freshclam
changed_when: False
when:
- freshclam_proc.rc != 0
- clamav_install_check.stat.exists
- security_enable_virus_scanner | bool
- security_run_virus_scanner_update | bool