mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-07 17:52:46 +01:00
13 lines
304 B
Plaintext
13 lines
304 B
Plaintext
{% from 'vars/globals.map.jinja' import GLOBALS %}
|
|
{% from 'zeek/config.map.jinja' import ZEEKMERGED %}
|
|
|
|
include:
|
|
{% if ZEEKMERGED.enabled and GLOBALS.role != 'so-import'%}
|
|
- zeek.enabled
|
|
{% elif GLOBALS.role == 'so-import' %}
|
|
- zeek.config
|
|
- zeek.disabled
|
|
{% else %}
|
|
- zeek.disabled
|
|
{% endif %}
|