summaryrefslogtreecommitdiff
path: root/testing/logrotate/logrotate.conf
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-06-20 00:01:41 +0000
committerroot <root@rshg054.dnsready.net>2012-06-20 00:01:41 +0000
commit530e6e88786befa5d1bcd569e480f1b9fec5b102 (patch)
tree78088a8187ab892bdaa7001bcd2e76abd66837df /testing/logrotate/logrotate.conf
parente4afcc505c31482d7d7cee60bb6388bfacc8ad7f (diff)
Wed Jun 20 00:01:41 UTC 2012
Diffstat (limited to 'testing/logrotate/logrotate.conf')
-rw-r--r--testing/logrotate/logrotate.conf31
1 files changed, 31 insertions, 0 deletions
diff --git a/testing/logrotate/logrotate.conf b/testing/logrotate/logrotate.conf
new file mode 100644
index 000000000..88b4935cd
--- /dev/null
+++ b/testing/logrotate/logrotate.conf
@@ -0,0 +1,31 @@
+# see "man logrotate" for details
+# rotate log files weekly
+weekly
+
+# keep 4 weeks worth of backlogs
+rotate 4
+
+# restrict maximum size of log files
+#size 20M
+
+# create new (empty) log files after rotating old ones
+create
+
+# uncomment this if you want your log files compressed
+#compress
+
+# Logs are moved into directory for rotation
+# olddir /var/log/archive
+
+# Ignore pacman saved files
+tabooext + .pacorig .pacnew .pacsave
+
+# Arch packages drop log rotation information into this directory
+include /etc/logrotate.d
+
+/var/log/wtmp {
+ monthly
+ create 0664 root root
+ rotate 1
+}
+