16 lines
347 B
Plaintext
16 lines
347 B
Plaintext
/var/log/border6/*.log {
|
|
daily
|
|
missingok
|
|
rotate 14
|
|
compress
|
|
notifempty
|
|
create 640 root adm
|
|
sharedscripts
|
|
postrotate
|
|
if systemctl status border6 >/dev/null; then \
|
|
docker exec border6.service apachectl graceful; \
|
|
fi;
|
|
endscript
|
|
}
|
|
# vim: set tabstop=4 shiftwidth=4 expandtab smarttab:
|