### Autogenerated by system-syslog.py ###
/var/log/messages {
  missingok
  notifempty
  create
  rotate 5
  size=256k
  postrotate
    invoke-rc.d rsyslog rotate > /dev/null
  endscript
}

{% if file is vyos_defined %}
{%     for file_name, file_options in file.items() %}
/var/log/user/{{ file_name }} {
  missingok
  notifempty
  create
  rotate {{ file_options.archive.file }}
  size={{ file_options.archive.size | int // 1024 }}k
  postrotate
    invoke-rc.d rsyslog rotate > /dev/null
  endscript
}

{%     endfor %}
{% endif %}