forked from saltstack/salt-winrepo-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gpg4win-light.sls
30 lines (30 loc) · 1015 Bytes
/
gpg4win-light.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
# just 32-bit x86 installer available
{% if grains['cpuarch'] == 'AMD64' %}
{% set PROGRAM_FILES = "%ProgramFiles(x86)%" %}
{% else %}
{% set PROGRAM_FILES = "%ProgramFiles%" %}
{% endif %}
gpg4win-light:
'2.3.0':
full_name: 'Gpg4Win (2.3.0)'
installer: 'http://files.gpg4win.org/gpg4win-light-2.3.0.exe'
install_flags: '/S'
uninstaller: '{{ PROGRAM_FILES }}\GNU\GnuPG\gpg4win-uninstall.exe'
uninstall_flags: '/S'
msiexec: False
locale: en_US
reboot: False
'2.2.4':
full_name: 'Gpg4Win (2.2.4)'
installer: 'http://files.gpg4win.org/gpg4win-light-2.2.4.exe'
install_flags: '/S'
uninstaller: '{{ PROGRAM_FILES }}\GNU\GnuPG\gpg4win-uninstall.exe'
uninstall_flags: '/S'
msiexec: False
locale: en_US
reboot: False
#
# Note: this 2.2.3 light installer has a bug and it needs to be fixed upstream
# Here are work around instructions under Issue #113 in the meantime
# https://github.com/saltstack/salt-winrepo/issues/113#issuecomment-72837987
#