forked from saltstack/salt-winrepo-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gvim.sls
25 lines (25 loc) · 801 Bytes
/
gvim.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
# just 32-bit x86 installer available
{% if grains['cpuarch'] == 'AMD64' %}
{% set PROGRAM_FILES = "%ProgramFiles(x86)%" %}
{% else %}
{% set PROGRAM_FILES = "%ProgramFiles%" %}
{% endif %}
gvim:
'7.4':
full_name: 'Vim 7.4 (self-installing)'
installer: 'ftp://ftp.vim.org/pub/vim/pc/gvim74.exe'
install_flags: '/TYPE=FULL /S /DD'
uninstaller: '{{ PROGRAM_FILES }}\Vim\vim74\uninstall-gui.exe'
uninstall_flags: '/S'
msiexec: False
locale: en_US
reboot: False
'7.3':
full_name: 'Vim 7.3 (self-installing)'
installer: 'ftp://ftp.vim.org/pub/vim/pc/gvim73_46.exe'
install_flags: '/TYPE=FULL /S /DD'
uninstaller: '{{ PROGRAM_FILES }}\Vim\vim73\uninstall-gui.exe'
uninstall_flags: '/S'
msiexec: False
locale: en_US
reboot: False