mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 09:12:45 +01:00
13 lines
379 B
Plaintext
13 lines
379 B
Plaintext
{%- set FLEETSETUP = salt['pillar.get']('global:fleetsetup', '0') -%}
|
|
|
|
{%- if FLEETSETUP != 0 %}
|
|
launcherpkg:
|
|
pkg.installed:
|
|
- sources:
|
|
{% if grains['os'] == 'CentOS' %}
|
|
- launcher-final: salt://launcher/packages/launcher.rpm
|
|
{% elif grains['os'] == 'Ubuntu' %}
|
|
- launcher-final: salt://launcher/packages/launcher.deb
|
|
{% endif %}
|
|
{%- endif %}
|