Changes between Version 4 and Version 5 of Logrotate
- Timestamp:
- 04/05/22 00:22:43 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Logrotate
v4 v5 3 3 {{{ 4 4 #!sh 5 [ krit@Mosh ~]$more /etc/logrotate.d/actdaslog5 [root@Mosh ActDas]# more /etc/logrotate.d/actdaslog 6 6 /tmp/ActDasLog/*.log 7 7 { 8 8 su krit krit 9 #size 500k10 9 rotate 7 11 10 daily 11 size 5M # place size after daily, it will process if file log > 5M ignore daily 12 copytruncate #copy to actdas.log.1 and empty actdas.log to zero 12 13 missingok 13 14 notifempty 14 15 delaycompress 15 16 compress 16 postrotate17 touch /tmp/ActDasLog/mosq_feed_actDas_11_firmware.log18 chown krit:krit /tmp/ActDasLog/mosq_feed_actDas_11_firmware.log19 endscript20 17 } 18 21 19 }}} 22 20