public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-admin/logrotate/files: logrotate.conf
@ 2013-05-18  9:41 JosA MarAa Alonso (nimiux)
  0 siblings, 0 replies; 2+ messages in thread
From: JosA MarAa Alonso (nimiux) @ 2013-05-18  9:41 UTC (permalink / raw
  To: gentoo-commits

nimiux      13/05/18 09:41:05

  Modified:             logrotate.conf
  Log:
  Load all common settings before including specific files. Bug 469908 by Hank Leininger
  
  (Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key D628E536)

Revision  Changes    Path
1.5                  app-admin/logrotate/files/logrotate.conf

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/logrotate/files/logrotate.conf?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/logrotate/files/logrotate.conf?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/logrotate/files/logrotate.conf?r1=1.4&r2=1.5

Index: logrotate.conf
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/logrotate/files/logrotate.conf,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- logrotate.conf	10 May 2013 19:45:39 -0000	1.4
+++ logrotate.conf	18 May 2013 09:41:04 -0000	1.5
@@ -1,4 +1,4 @@
-# $Header: /var/cvsroot/gentoo-x86/app-admin/logrotate/files/logrotate.conf,v 1.4 2013/05/10 19:45:39 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/logrotate/files/logrotate.conf,v 1.5 2013/05/18 09:41:04 nimiux Exp $
 #
 # Logrotate default configuration file for Gentoo Linux
 #
@@ -20,13 +20,13 @@
 # uncomment this if you want your log files compressed
 compress
 
-# packages can drop log rotation information into this directory
-include /etc/logrotate.d
-
 notifempty
 nomail
 noolddir
 
+# packages can drop log rotation information into this directory
+include /etc/logrotate.d
+
 # no packages own wtmp and btmp -- we'll rotate them here
 /var/log/wtmp {
     monthly





^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-admin/logrotate/files: logrotate.conf
@ 2014-07-07  9:55 JosA MarAa Alonso (nimiux)
  0 siblings, 0 replies; 2+ messages in thread
From: JosA MarAa Alonso (nimiux) @ 2014-07-07  9:55 UTC (permalink / raw
  To: gentoo-commits

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





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-07-07  9:55 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-07  9:55 [gentoo-commits] gentoo-x86 commit in app-admin/logrotate/files: logrotate.conf JosA MarAa Alonso (nimiux)
  -- strict thread matches above, loose matches on Subject: below --
2013-05-18  9:41 JosA MarAa Alonso (nimiux)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox