forked from saltstack/salt-winrepo-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eea.sls
43 lines (43 loc) · 1.65 KB
/
eea.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
35
36
37
38
39
40
41
42
43
eea:
'6.3.2016.0':
full_name: 'ESET Endpoint Antivirus'
{% if grains['cpuarch'] == 'AMD64' %}
installer: 'http://download.eset.com/download/win/eea/eea_nt64_enu.msi'
uninstaller: 'http://download.eset.com/download/win/eea/eea_nt64_enu.msi'
{% elif grains['cpuarch'] == 'x86' %}
installer: 'http://download.eset.com/download/win/eea/eea_nt32_enu.msi'
uninstaller: 'http://download.eset.com/download/win/eea/eea_nt32_enu.msi'
{% endif %}
install_flags: '/qn ALLUSERS=1 /norestart'
uninstall_flags: '/qn /norestart'
msiexec: True
locale: en_US
reboot: False
'6.2.2021.0':
full_name: 'ESET Endpoint Antivirus'
{% if grains['cpuarch'] == 'AMD64' %}
installer: 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi'
uninstaller: 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi'
{% elif grains['cpuarch'] == 'x86' %}
installer: 'salt://win/repo-ng/eea/v6/eea_nt32_enu.msi'
uninstaller: 'salt://win/repo-ng/eea/v6/eea_nt32_enu.msi'
{% endif %}
install_flags: '/qn ALLUSERS=1 /norestart'
uninstall_flags: '/qn /norestart'
msiexec: True
locale: en_US
reboot: False
'5.0.2254.0':
full_name: 'ESET Endpoint Antivirus'
{% if grains['cpuarch'] == 'AMD64' %}
installer: 'salt://win/repo-ng/eea/v5/eea_nt64_enu.msi'
uninstaller: 'salt://win/repo-ng/eea/v5/eea_nt64_enu.msi'
{% elif grains['cpuarch'] == 'x86' %}
installer: 'salt://win/repo-ng/eea/v5/eea_nt32_enu.msi'
uninstaller: 'salt://win/repo-ng/eea/v5/eea_nt32_enu.msi'
{% endif %}
install_flags: '/qn ALLUSERS=1 /norestart'
uninstall_flags: '/qn /norestart'
msiexec: True
locale: en_US
reboot: False