forked from saltstack/salt-winrepo-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clamwin.sls
34 lines (34 loc) · 1.17 KB
/
clamwin.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
34
# just 32-bit x86 installer available
{% if grains['cpuarch'] == 'AMD64' %}
{% set PROGRAM_FILES = "%ProgramFiles(x86)%" %}
{% else %}
{% set PROGRAM_FILES = "%ProgramFiles%" %}
{% endif %}
clamwin:
'0.98.7':
full_name: 'ClamWin'
installer: 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.7-setup.exe'
install_flags: '/sp- /verysilent /norestart'
uninstaller: '{{ PROGRAM_FILES }}\ClamWin\unins000.exe'
uninstall_flags: '/verysilent /norestart'
msiexec: False
locale: en_US
reboot: False
'0.98.6':
full_name: 'ClamWin'
installer: 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.6-setup.exe'
install_flags: '/sp- /verysilent /norestart'
uninstaller: '{{ PROGRAM_FILES }}\ClamWin\unins000.exe'
uninstall_flags: '/verysilent /norestart'
msiexec: False
locale: en_US
reboot: False
'0.98.5':
full_name: 'ClamWin'
installer: 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.5-setup.exe'
install_flags: '/sp- /verysilent /norestart'
uninstaller: '{{ PROGRAM_FILES }}\ClamWin\unins000.exe'
uninstall_flags: '/verysilent /norestart'
msiexec: False
locale: en_US
reboot: False