15 lines
381 B
Plaintext
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
|
|
}
|