mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-15 00:54:41 +00:00
suricata: fix previous; closes #1212
This commit is contained in:
parent
8459b38f11
commit
407dc8ae92
@ -226,7 +226,7 @@ outputs:
|
||||
|
||||
# a line based alerts log similar to fast.log into syslog
|
||||
- syslog:
|
||||
enabled: {% if OPNsense.IDS.general.syslog|default('0') == '0' %}no{% else %}yes{% endif %}
|
||||
enabled: {% if helpers.exists('OPNsense.IDS.general.syslog') and OPNsense.IDS.general.syslog|default('0') == '0' %}no{% else %}yes{% endif %}
|
||||
# reported identity to syslog. If ommited the program name (usually
|
||||
# suricata) will be used.
|
||||
#identity: "suricata"
|
||||
@ -740,7 +740,7 @@ logging:
|
||||
enabled: yes
|
||||
filename: /var/log/suricata.log
|
||||
- syslog:
|
||||
enabled: {% if OPNsense.IDS.general.syslog|default('0') == '0' %}no{% else %}yes{% endif %}
|
||||
enabled: {% if helpers.exists('OPNsense.IDS.general.syslog') and OPNsense.IDS.general.syslog|default('0') == '0' %}no{% else %}yes{% endif %}
|
||||
|
||||
facility: local5
|
||||
format: "[%i] <%d> -- "
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user