mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2026-02-20 06:05:01 +01:00
12 lines
258 B
Django/Jinja
12 lines
258 B
Django/Jinja
{% set ROLE_GLOBALS = {} %}
|
|
|
|
{% set SENSOR_GLOBALS = {
|
|
'sensor': {
|
|
'interface': INIT.PILLAR.sensor.interface
|
|
}
|
|
%}
|
|
|
|
{% for sg in SENSOR_GLOBALS %}
|
|
{% do salt['defaults.merge'](ROLE_GLOBALS, sg, merge_lists=False, in_place=True) %}
|
|
{% endfor %}
|