From 3865f043740f1f00b3ebe182e4a014ed0fe8d391 Mon Sep 17 00:00:00 2001 From: Matthias Hentges Date: Sat, 24 Feb 2007 21:30:44 +0000 Subject: logrotate: Add new recipe for logrotate, courtesy of Colin Hill aka hillct. Closing bug #1895 --- packages/logrotate/files/logrotate.conf | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 packages/logrotate/files/logrotate.conf (limited to 'packages/logrotate/files/logrotate.conf') diff --git a/packages/logrotate/files/logrotate.conf b/packages/logrotate/files/logrotate.conf new file mode 100644 index 0000000000..b370b392e7 --- /dev/null +++ b/packages/logrotate/files/logrotate.conf @@ -0,0 +1,30 @@ +# 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 + +# ipk packages should drop log rotation information into this directory +include /etc/logrotate.d + +# no packages own wtmp -- we'll rotate them here +/var/log/wtmp { + monthly + create 0664 root root + rotate 1 +} + +# /var/log/messages { +# rotate 5 +# postrotate +# /bin/killall syslogd +# /bin/killall klogd +# endscript +# } -- cgit v1.2.3