diff options
author | Paul Sokolovsky <pmiscml@gmail.com> | 2007-02-25 18:18:55 +0000 |
---|---|---|
committer | Paul Sokolovsky <pmiscml@gmail.com> | 2007-02-25 18:18:55 +0000 |
commit | 1e8d12394b938796eb1cdcaa8a24694da9662282 (patch) | |
tree | 814899e8ba8165ff75a117e148de5f3b6b7742ee /packages/logrotate/files/logrotate.conf | |
parent | 2c8702d07b191e33a5dd7214d9e8be0d18652dec (diff) | |
parent | cee1697942ab9b42557056d771ec2cfb7c81b523 (diff) |
merge of '0464758766d765866ff65500fed4e9d1669422a1'
and '922cf0f28b50dfb43c18e0654db44c32b7d09bc4'
Diffstat (limited to 'packages/logrotate/files/logrotate.conf')
-rw-r--r-- | packages/logrotate/files/logrotate.conf | 30 |
1 files changed, 30 insertions, 0 deletions
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 +# } |