summaryrefslogtreecommitdiffstats
path: root/roles/common/tasks/clamav.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/common/tasks/clamav.yml')
-rw-r--r--roles/common/tasks/clamav.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/roles/common/tasks/clamav.yml b/roles/common/tasks/clamav.yml
new file mode 100644
index 0000000..f66689c
--- /dev/null
+++ b/roles/common/tasks/clamav.yml
@@ -0,0 +1,12 @@
+- name: Install ClamAV
+ apt: pkg={{ item }}
+ with_items:
+ - clamav
+ - clamav-daemon
+ - clamav-freshclam
+
+- name: Start ClamAV
+ service: name={{ item }} state=started
+ with_items:
+ - clamav-daemon
+ - clamav-freshclam