diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-07-07 11:43:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-07 11:43:40 +0200 |
commit | f5e66a451dcd1d98be32e0a7800277cf81441e3d (patch) | |
tree | 0349b1bcfad1f0c52437dfef033981bffdcdd119 /data/templates/syslog/rsyslog.conf.j2 | |
parent | 46f72030cdf073a69871496ae600c2d2951d808b (diff) | |
parent | 52ce659509022807c4a38fcb791abd325f3e8b00 (diff) | |
download | vyos-1x-f5e66a451dcd1d98be32e0a7800277cf81441e3d.tar.gz vyos-1x-f5e66a451dcd1d98be32e0a7800277cf81441e3d.zip |
Merge pull request #1399 from sarthurdev/T4500
syslog: T4500: Remove max-size from rsyslog leaving rotation to logrotate
Diffstat (limited to 'data/templates/syslog/rsyslog.conf.j2')
-rw-r--r-- | data/templates/syslog/rsyslog.conf.j2 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/data/templates/syslog/rsyslog.conf.j2 b/data/templates/syslog/rsyslog.conf.j2 index 4445d568b..abe880283 100644 --- a/data/templates/syslog/rsyslog.conf.j2 +++ b/data/templates/syslog/rsyslog.conf.j2 @@ -10,7 +10,11 @@ $MarkMessagePeriod {{ files['global']['marker-interval'] }} $PreserveFQDN on {% endif %} {% for file, file_options in files.items() %} +{% if file_options['max-size'] is vyos_defined %} $outchannel {{ file }},{{ file_options['log-file'] }},{{ file_options['max-size'] }},{{ file_options['action-on-max-size'] }} +{% else %} +$outchannel {{ file }},{{ file_options['log-file'] }} +{% endif %} {{ file_options['selectors'] }} :omfile:${{ file }} {% endfor %} {% if console is defined and console is not none %} |