forked from saltstack/salt-winrepo-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
filezilla.sls
68 lines (68 loc) · 2.99 KB
/
filezilla.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# both 32-bit (x86) AND a 64-bit (AMD64) installer available
{% set PROGRAM_FILES = "%ProgramFiles%" %}
filezilla:
'3.16.0':
full_name: 'FileZilla Client 3.16.0'
{% if grains['cpuarch'] == 'AMD64' %}
installer: 'http://netcologne.dl.sourceforge.net/project/filezilla/FileZilla_Client/3.16.0/FileZilla_3.16.0_win64-setup.exe'
{% elif grains['cpuarch'] == 'x86' %}
installer: 'http://vorboss.dl.sourceforge.net/project/filezilla/FileZilla_Client/3.16.0/FileZilla_3.16.0_win32-setup.exe'
{% endif %}
install_flags: '/S'
uninstaller: '{{ PROGRAM_FILES }}\FileZilla FTP Client\uninstall.exe'
uninstall_flags: '/S'
msiexec: False
locale: en_US
reboot: False
'3.14.1':
full_name: 'FileZilla Client 3.14.1'
{% if grains['cpuarch'] == 'AMD64' %}
installer: 'http://netcologne.dl.sourceforge.net/project/filezilla/FileZilla_Client/3.14.1/FileZilla_3.14.1_win64-setup.exe'
{% elif grains['cpuarch'] == 'x86' %}
installer: 'http://vorboss.dl.sourceforge.net/project/filezilla/FileZilla_Client/3.14.1/FileZilla_3.14.1_win32-setup.exe'
{% endif %}
install_flags: '/S'
uninstaller: '{{ PROGRAM_FILES }}\FileZilla FTP Client\uninstall.exe'
uninstall_flags: '/S'
msiexec: False
locale: en_US
reboot: False
'3.14.0':
full_name: 'FileZilla Client 3.14.0'
{% if grains['cpuarch'] == 'AMD64' %}
installer: 'http://netcologne.dl.sourceforge.net/project/filezilla/FileZilla_Client/3.14.0/FileZilla_3.14.0_win64-setup.exe'
{% elif grains['cpuarch'] == 'x86' %}
installer: 'http://vorboss.dl.sourceforge.net/project/filezilla/FileZilla_Client/3.14.0/FileZilla_3.14.0_win32-setup.exe'
{% endif %}
install_flags: '/S'
uninstaller: '{{ PROGRAM_FILES }}\FileZilla FTP Client\uninstall.exe'
uninstall_flags: '/S'
msiexec: False
locale: en_US
reboot: False
'3.13.0':
full_name: 'FileZilla Client 3.13.0'
{% if grains['cpuarch'] == 'AMD64' %}
installer: 'http://heanet.dl.sourceforge.net/project/filezilla/FileZilla_Client/3.13.0/FileZilla_3.13.0_win64-setup.exe'
{% elif grains['cpuarch'] == 'x86' %}
installer: 'http://heanet.dl.sourceforge.net/project/filezilla/FileZilla_Client/3.13.0/FileZilla_3.13.0_win32-setup.exe'
{% endif %}
install_flags: '/S'
uninstaller: '{{ PROGRAM_FILES }}\FileZilla FTP Client\uninstall.exe'
uninstall_flags: '/S'
msiexec: False
locale: en_US
reboot: False
'3.11.0.2':
full_name: 'FileZilla Client 3.11.0.2'
{% if grains['cpuarch'] == 'AMD64' %}
installer: 'http://heanet.dl.sourceforge.net/project/filezilla/FileZilla_Client/3.11.0.2/FileZilla_3.11.0.2_win64-setup.exe'
{% elif grains['cpuarch'] == 'x86' %}
installer: 'http://heanet.dl.sourceforge.net/project/filezilla/FileZilla_Client/3.11.0.2/FileZilla_3.11.0.2_win32-setup.exe'
{% endif %}
install_flags: '/S'
uninstaller: '{{ PROGRAM_FILES }}\FileZilla FTP Client\uninstall.exe'
uninstall_flags: '/S'
msiexec: False
locale: en_US
reboot: False