mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 09:12:45 +01:00
fix map for steno
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
{% set PCAPOPTIONS = {} %}
|
||||
{% set STENOOPTIONS = {} %}
|
||||
{% set ENABLED = salt['pillar.get']('steno:enabled', 'True') %}
|
||||
|
||||
# don't start the docker container if it is an import node or disabled via pillar
|
||||
{% if grains.id.split('_')|last == 'import' or ENABLED is sameas false %}
|
||||
{% set PCAPOPTIONS['start'] = False %}
|
||||
{% do STENOOPTIONS.update({'start': False}) %}
|
||||
{% else %}
|
||||
{% set PCAPOPTIONS['start'] = True %}
|
||||
{% do STENOOPTIONS.update({'start': True}) %}
|
||||
{% endif %}
|
||||
|
||||
{% if ENABLED is sameas false %}
|
||||
{% set PCAPOPTIONS['status'] = 'stopped' %}
|
||||
{% do STENOOPTIONS.update({'status': 'stopped'}) %}
|
||||
{% else %}
|
||||
{% set PCAPOPTIONS['status'] = 'running' %}
|
||||
{% do STENOOPTIONS.update({'status': 'running'}) %}
|
||||
{% endif %}
|
||||
Reference in New Issue
Block a user