summaryrefslogtreecommitdiff
path: root/libre-testing/logrotate/logrotate.conf
diff options
context:
space:
mode:
Diffstat (limited to 'libre-testing/logrotate/logrotate.conf')
-rw-r--r--libre-testing/logrotate/logrotate.conf38
1 files changed, 38 insertions, 0 deletions
diff --git a/libre-testing/logrotate/logrotate.conf b/libre-testing/logrotate/logrotate.conf
new file mode 100644
index 000000000..4193a3a7f
--- /dev/null
+++ b/libre-testing/logrotate/logrotate.conf
@@ -0,0 +1,38 @@
+# 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 utmp
+ minsize 1M
+ rotate 1
+}
+
+/var/log/btmp {
+ missingok
+ monthly
+ create 0600 root utmp
+ rotate 1
+}