diff options
author | Daniil Baturin <daniil@vyos.io> | 2025-03-10 09:50:00 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-10 09:50:00 +0000 |
commit | 344455475089ee03e3e3a1ad9f7e61b69a2fdfff (patch) | |
tree | 9eae2f98bcd0ef6ecfc3b8d69138025a2553b457 /data | |
parent | b12c9ec6db804f8e9494502e0612850c72670fee (diff) | |
parent | 19af4736532ce942dd9c72e36ad08d97a54cc17c (diff) | |
download | vyos-1x-344455475089ee03e3e3a1ad9f7e61b69a2fdfff.tar.gz vyos-1x-344455475089ee03e3e3a1ad9f7e61b69a2fdfff.zip |
Merge pull request #4386 from c-po/syslog-T7229
syslog: T7229: advanced format should not have IPv6 addresses in [] brackets
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/rsyslog/rsyslog.conf.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/rsyslog/rsyslog.conf.j2 b/data/templates/rsyslog/rsyslog.conf.j2 index e2ff334ff..68e34f3f8 100644 --- a/data/templates/rsyslog/rsyslog.conf.j2 +++ b/data/templates/rsyslog/rsyslog.conf.j2 @@ -98,7 +98,7 @@ if prifilt("{{ tmp | join(',') }}") then { action( type="omfwd" # Remote syslog server where we send our logs to - target="{{ remote_name | bracketize_ipv6 }}" + target="{{ remote_name }}" # Port on the remote syslog server port="{{ remote_options.port }}" protocol="{{ remote_options.protocol }}" |