blob: f66689c4a52abdf84272bc14cc150a9bdaf725f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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
|