mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2026-04-26 14:37:49 +02:00
16 lines
573 B
Django/Jinja
16 lines
573 B
Django/Jinja
# DO NOT EDIT THIS FILE
|
|
{% for module in THIRDPARTY.modules.keys() %}
|
|
- module: {{ module }}
|
|
{%- for fileset in THIRDPARTY.modules[module] %}
|
|
{{ fileset }}:
|
|
enabled: {{ THIRDPARTY.modules[module][fileset].enabled }}
|
|
{#- only manage the settings if the fileset is enabled #}
|
|
{%- if THIRDPARTY.modules[module][fileset].enabled %}
|
|
{%- for var, value in THIRDPARTY.modules[module][fileset].items() %}
|
|
{%- if var|lower != 'enabled' %}
|
|
{{ var }}: {{ value }}
|
|
{%- endif %}
|
|
{%- endfor %}
|
|
{%- endif %}
|
|
{%- endfor %}
|
|
{% endfor %} |