summaryrefslogtreecommitdiffstats
path: root/abs/core/logrotate/logrotate.conf
diff options
context:
space:
mode:
Diffstat (limited to 'abs/core/logrotate/logrotate.conf')
-rw-r--r--abs/core/logrotate/logrotate.conf28
1 files changed, 28 insertions, 0 deletions
diff --git a/abs/core/logrotate/logrotate.conf b/abs/core/logrotate/logrotate.conf
new file mode 100644
index 0000000..fde947b
--- /dev/null
+++ b/abs/core/logrotate/logrotate.conf
@@ -0,0 +1,28 @@
+# see "man logrotate" for details
+# rotate log files weekly
+weekly
+
+# keep 4 weeks worth of backlogs
+rotate 4
+
+# 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
+}
+