Skip to content

Commit

Permalink
Merge pull request #1568 from scheste/patch-32
Browse files Browse the repository at this point in the history
Create osquery.sls
  • Loading branch information
twangboy authored Mar 6, 2019
2 parents d58615b + f3d8c1a commit b6a360c
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions osquery.sls
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Performant endpoint visibility https://osquery.io/

{% set source_path = 'https://osquery-packages.s3.amazonaws.com/windows/' %}

osquery:
{% for version in ['3.3.2',
'3.3.0',
'3.2.6',
'3.2.4',
'2.11.2',] %}
'{{ version }}':
full_name: 'osquery'
installer: '{{ source_path }}osquery-{{ version }}.msi'
install_flags: '/qn /norestart'
uninstaller: '{{ source_path }}osquery-{{ version }}.msi'
uninstall_flags: '/qn /norestart'
msiexec: True
reboot: False
{% endfor %}

0 comments on commit b6a360c

Please sign in to comment.