forked from saltstack/salt-winrepo-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clamav.sls
33 lines (33 loc) · 1.27 KB
/
clamav.sls
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
clamav:
'0.99.1':
{% if grains['cpuarch'] == 'AMD64' %}
full_name: 'ClamAV-x64'
# Official download link - https://www.clamav.net/downloads/production/clamav-0.99.1-x64.msi
installer: 'salt://win/repo-ng/clamav/clamav-0.99.1-x64.msi'
{% else %}
full_name: 'ClamAV'
# Official download link - https://www.clamav.net/downloads/production/clamav-0.99.1-win32.msi
installer: 'salt://win/repo-ng/clamav/clamav-0.99.1-win32.msi'
{% endif %}
install_flags: '/qr'
locale: en_US
reboot: False
msiexec: True
uninstaller: 'msiexec.exe'
uninstall_flags: '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}'
'0.98.7':
{% if grains['cpuarch'] == 'AMD64' %}
full_name: 'ClamAV-x64'
# Official download link - https://www.clamav.net/downloads/production/clamav-0.98.7-x64.msi
installer: 'salt://win/repo-ng/clamav/clamav-0.98.7-x64.msi'
{% else %}
full_name: 'ClamAV'
# Official download link - https://www.clamav.net/downloads/production/clamav-0.98.7-win32.msi
installer: 'salt://win/repo-ng/clamav/clamav-0.98.7-win32.msi'
{% endif %}
install_flags: '/qr'
locale: en_US
reboot: False
msiexec: True
uninstaller: 'msiexec.exe'
uninstall_flags: '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}'