]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
Add logrotate configuration file for freeradius-server.
authorStefan Schantl <Stevee@ipfire.org>
Tue, 8 Sep 2009 17:02:07 +0000 (19:02 +0200)
committerStefan Schantl <Stevee@ipfire.org>
Tue, 8 Sep 2009 17:02:07 +0000 (19:02 +0200)
src/logrotate/freeradius.logrotate [new file with mode: 0644]

diff --git a/src/logrotate/freeradius.logrotate b/src/logrotate/freeradius.logrotate
new file mode 100644 (file)
index 0000000..8c5c6fb
--- /dev/null
@@ -0,0 +1,56 @@
+# You can use this to rotate the /var/log/radius/* files, simply copy
+# it to /etc/logrotate.d/radiusd
+
+# There are different detail-rotating strategies you can use.  One is
+# to write to a single detail file per IP and use the rotate config
+# below.  Another is to write to a daily detail file per IP with:
+#     detailfile = ${radacctdir}/%{Client-IP-Address}/%Y%m%d-detail
+# (or similar) in radiusd.conf, without rotation.  If you go with the
+# second technique, you will need another cron job that removes old
+# detail files.  You do not need to comment out the below for method #2.
+/var/log/radius/radacct/*/detail {
+       monthly
+       rotate 4
+       nocreate
+       missingok
+       compress
+}
+
+/var/log/radius/checkrad.log {
+       monthly
+       rotate 4
+       create
+       missingok
+       compress
+}
+
+/var/log/radius/radius.log {
+       monthly
+       rotate 4
+       create
+       missingok
+       compress
+}
+
+/var/log/radius/radutmp {
+       monthly
+       rotate 4
+       create
+       compress
+       missingok
+}
+
+/var/log/radius/radwtmp {
+       monthly
+       rotate 4
+       create
+       compress
+       missingok
+}
+/var/log/radius/sqltrace.sql {
+        monthly
+        rotate 4
+        create
+        compress
+        missingok
+}