nimiux 14/07/07 09:55:32 Modified: logrotate.conf Log: Fix tabs and enhance comments. (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key D628E536)
Revision Changes Path 1.6 app-admin/logrotate/files/logrotate.conf file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/logrotate/files/logrotate.conf?rev=1.6&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/logrotate/files/logrotate.conf?rev=1.6&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/logrotate/files/logrotate.conf?r1=1.5&r2=1.6 Index: logrotate.conf =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-admin/logrotate/files/logrotate.conf,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- logrotate.conf 18 May 2013 09:41:04 -0000 1.5 +++ logrotate.conf 7 Jul 2014 09:55:32 -0000 1.6 @@ -1,40 +1,38 @@ -# $Header: /var/cvsroot/gentoo-x86/app-admin/logrotate/files/logrotate.conf,v 1.5 2013/05/18 09:41:04 nimiux Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/logrotate/files/logrotate.conf,v 1.6 2014/07/07 09:55:32 nimiux Exp $ # -# Logrotate default configuration file for Gentoo Linux -# -# See "man logrotate" for details +# Default logrotate(8) configuration file for Gentoo Linux. +# See "man logrotate" for details. -# rotate log files weekly +# rotate log files weekly. weekly #daily -# keep 4 weeks worth of backlogs +# keep 4 weeks worth of backlogs. rotate 4 -# create new (empty) log files after rotating old ones +# create new (empty) log files after rotating old ones. create -# use date as a suffix of the rotated file +# use date as a suffix of the rotated file. dateext -# uncomment this if you want your log files compressed +# compress rotated log files. compress notifempty nomail noolddir -# packages can drop log rotation information into this directory +# packages can drop log rotation information into this directory. include /etc/logrotate.d -# no packages own wtmp and btmp -- we'll rotate them here +# no packages own wtmp and btmp -- we'll rotate them here. /var/log/wtmp { monthly create 0664 root utmp - minsize 1M + minsize 1M rotate 1 } - /var/log/btmp { missingok monthly
