2009-03-09 00:25:57 +01:00
|
|
|
Index: examples/logrotate-default
|
|
|
|
===================================================================
|
2010-11-18 13:49:52 +01:00
|
|
|
--- examples/logrotate-default.orig
|
|
|
|
+++ examples/logrotate-default
|
|
|
|
@@ -14,22 +14,13 @@ dateext
|
2008-12-15 14:55:18 +01:00
|
|
|
# uncomment this if you want your log files compressed
|
|
|
|
#compress
|
2008-09-06 00:08:20 +02:00
|
|
|
|
2010-11-18 13:49:52 +01:00
|
|
|
-# RPM packages drop log rotation information into this directory
|
|
|
|
-include /etc/logrotate.d
|
|
|
|
-
|
|
|
|
-# no packages own wtmp and btmp -- we'll rotate them here
|
2008-12-15 14:55:18 +01:00
|
|
|
-/var/log/wtmp {
|
|
|
|
- monthly
|
|
|
|
- create 0664 root utmp
|
|
|
|
- minsize 1M
|
|
|
|
- rotate 1
|
|
|
|
-}
|
2010-11-18 13:49:52 +01:00
|
|
|
+# comment these to switch compression to use gzip or another
|
|
|
|
+# compression scheme
|
2011-08-12 21:00:30 +02:00
|
|
|
+compresscmd /usr/bin/xz
|
|
|
|
+uncompresscmd /usr/bin/xzdec
|
2010-11-18 13:49:52 +01:00
|
|
|
|
2008-09-06 00:08:20 +02:00
|
|
|
-/var/log/btmp {
|
|
|
|
- missingok
|
|
|
|
- monthly
|
|
|
|
- create 0600 root utmp
|
|
|
|
- rotate 1
|
|
|
|
-}
|
2010-11-18 13:49:52 +01:00
|
|
|
+# former versions had to have the compressext set accordingly
|
2011-08-12 21:00:30 +02:00
|
|
|
+#compressext .xz
|
2008-09-06 00:08:20 +02:00
|
|
|
|
2010-11-18 13:49:52 +01:00
|
|
|
-# system-specific logs may be also be configured here.
|
|
|
|
+# RPM packages drop log rotation information into this directory
|
|
|
|
+include /etc/logrotate.d
|
2009-03-09 00:25:57 +01:00
|
|
|
Index: examples/logrotate.wtmp
|
|
|
|
===================================================================
|
2010-11-18 13:49:52 +01:00
|
|
|
--- /dev/null
|
|
|
|
+++ examples/logrotate.wtmp
|
2008-09-06 00:08:20 +02:00
|
|
|
@@ -0,0 +1,11 @@
|
2010-11-18 13:49:52 +01:00
|
|
|
+/var/log/wtmp /var/log/btmp {
|
2008-09-06 00:08:20 +02:00
|
|
|
+ compress
|
|
|
|
+ dateext
|
|
|
|
+ maxage 365
|
|
|
|
+ rotate 99
|
|
|
|
+ size=+400k
|
|
|
|
+ notifempty
|
|
|
|
+ missingok
|
|
|
|
+ copytruncate
|
|
|
|
+}
|
|
|
|
+
|