forked from saltstack/salt-winrepo-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bandizip.sls
40 lines (40 loc) · 1.13 KB
/
bandizip.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
#the provider only offers the download of the latest version
{% set source_path_v6 = 'http://ca-dl.bandisoft.com/bandizip' %}
{% set source_path_v7 = 'http://dl.bandisoft.com/bandizip.std' %}
# we do not use version numbers but treated it like chrome and use 'latest' only
# {% set version6 = '6.26' %}
# {% set version7 = '7.16' %}
#
bandizip:
'latest':
full_name: 'Bandizip'
installer: '{{ source_path_v7 }}/BANDIZIP-SETUP-STD-ALL.EXE'
install_flags: '/S'
uninstaller: '%ProgramFiles%\Bandizip\Uninstall.exe'
uninstall_flags: '/S'
msiexec: False
locale: en_US
reboot: False
#
bandizip6:
'latest':
full_name: 'Bandizip'
installer: '{{ source_path_v6 }}/BANDIZIP-SETUP.EXE'
install_flags: '/S'
uninstaller: '%ProgramFiles%\Bandizip\Uninstall.exe'
uninstall_flags: '/S'
msiexec: False
locale: en_US
reboot: False
#
bandizip7:
'latest':
full_name: 'Bandizip'
installer: '{{ source_path_v7 }}/BANDIZIP-SETUP-STD-ALL.EXE'
install_flags: '/S'
uninstaller: '%ProgramFiles%\Bandizip\Uninstall.exe'
uninstall_flags: '/S'
msiexec: False
locale: en_US
reboot: False
#