blob: 89d1a8a504b81f53e000e75710241346b6abe586 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
### Autogenerated by system-syslog.py ###
{% 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 %}
|