flexisip/scripts/flexisip-logrotate
2025-06-16 13:54:12 +07:00

18 lines
364 B
Text

/var/opt/belledonne-communications/log/flexisip/*.log {
size 500M
rotate 7
compress
delaycompress
nocreate
missingok
nodateext
postrotate
logfilename="$(basename $1)"
pidfile="/var/run/${logfilename%.log}.pid"
if [ -f "${pidfile}" ]; then
kill -HUP $(cat ${pidfile})
fi
endscript
}