From e871994959fccba3051d451f6e00c33a11370a00 Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Sat, 4 Jan 2014 21:00:57 +0100 Subject: Install ClamAV. --- roles/common/tasks/clamav.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 roles/common/tasks/clamav.yml (limited to 'roles/common/tasks/clamav.yml') 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 -- cgit v1.2.3