mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2026-01-15 12:41:32 +01:00
12 lines
274 B
Django/Jinja
12 lines
274 B
Django/Jinja
{% import_yaml 'redis/defaults.yaml' as redis %}
|
|
|
|
{%- for k, v in redis.redis.config.items() %}
|
|
{%- if v is iterable and v is not string %}
|
|
{%- for v1, v2 in v.items() %}
|
|
{{k}} {{v1}} {{v2}}
|
|
{%- endfor %}
|
|
{%- else %}
|
|
{{ k }} {{ v }}
|
|
{%- endif %}
|
|
{%- endfor %}
|