Files
Domoticz/logrotate/domoticz
2025-03-06 11:09:58 +01:00

15 lines
381 B
Plaintext

/var/log/domoticz.log {
missingok
weekly
rotate 7
compress
notifempty
postrotate
if [ -x /usr/sbin/invoke-rc.d ]; then \
invoke-rc.d domoticz reload > /dev/null; \
else \
/etc/init.d/domoticz reload > /dev/null; \
fi
endscript
}