forked from saltstack/salt-winrepo-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bulk_extractor.sls
25 lines (25 loc) · 907 Bytes
/
bulk_extractor.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 %}
bulk_extractor:
'1.5.5':
full_name: 'Bulk Extractor 1.5.5'
installer: 'http://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.5-windowsinstaller.exe'
install_flags: ' /S /norestart'
uninstaller: '{{ PROGRAM_FILES }}\Bulk Extractor 1.5.5\uninstall.exe'
uninstall_flags: '/S'
msiexec: False
locale: en_US
reboot: False
'1.4.1':
full_name: 'bulk_extractor'
installer: 'http://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.4.1-windowsinstaller.exe'
install_flags: '/S /norestart'
uninstaller: '{{ PROGRAM_FILES }}\Bulk Extractor 1.4.1\uninstall.exe'
uninstall_flags: '/S'
msiexec: False
locale: en_US
reboot: False