mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 09:12:45 +01:00
18 lines
620 B
Django/Jinja
18 lines
620 B
Django/Jinja
{% set ZEEKOPTIONS = {} %}
|
|
{% set ENABLED = salt['pillar.get']('zeek: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 not ENABLED %}
|
|
{% do ZEEKOPTIONS.update({'start': False}) %}
|
|
{% do ZEEKOPTIONS.update({'pl_cron_state': 'absent'}) %}
|
|
{% else %}
|
|
{% do ZEEKOPTIONS.update({'start': True}) %}
|
|
{% do ZEEKOPTIONS.update({'pl_cron_state': 'present'}) %}
|
|
{% endif %}
|
|
|
|
{% if not ENABLED %}
|
|
{% do ZEEKOPTIONS.update({'status': 'absent'}) %}
|
|
{% else %}
|
|
{% do ZEEKOPTIONS.update({'status': 'running'}) %}
|
|
{% endif %}
|