forked from saltstack/salt-winrepo-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
autopsy.sls
29 lines (29 loc) · 1.33 KB
/
autopsy.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
autopsy:
'4.17.0':
full_name: 'Autopsy'
{% if grains['cpuarch'] == 'AMD64' %}
installer: 'https://github.com/sleuthkit/autopsy/releases/download/autopsy-4.17.0/autopsy-4.17.0-64bit.msi'
uninstaller: 'https://github.com/sleuthkit/autopsy/releases/download/autopsy-4.17.0/autopsy-4.17.0-64bit.msi'
{% else %}
installer: 'https://github.com/sleuthkit/autopsy/releases/download/autopsy-4.17.0/autopsy-4.17.0-32bit.msi'
uninstaller: 'https://github.com/sleuthkit/autopsy/releases/download/autopsy-4.17.0/autopsy-4.17.0-32bit.msi'
{% endif %}
install_flags: '/qn /norestart'
uninstall_flags: '/qn /norestart'
msiexec: True
locale: en_US
reboot: False
'4.3.0':
full_name: 'Autopsy'
{% if grains['cpuarch'] == 'AMD64' %}
installer: 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi'
uninstaller: 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi'
{% else %}
installer: 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-32bit.msi'
uninstaller: 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-32bit.msi'
{% endif %}
install_flags: '/qn /norestart'
uninstall_flags: '/qn /norestart'
msiexec: True
locale: en_US
reboot: False