Allow spaces in shared secret, as posted to the list.
[freeradius.git] / redhat / radiusd-logrotate
index c2e6e1b..8c5c6fb 100644 (file)
@@ -1,37 +1,43 @@
-# You can use this to rotate the /var/log/radwtmp, simply copy it to
-# /etc/logrotate.d/radiusd
+# You can use this to rotate the /var/log/radius/* files, simply copy
+# it to /etc/logrotate.d/radiusd
 
-# if you use defail files, You can uncomment the next block and
-# edit it accordling your /etc/raddb/naslist file. If you comment
-# the /var/log/radwtmp block you'll need to include the
-# postrotate/endscript parts to the *last* NAS-NAME/detail of this file
-
-#/var/log/radius/radacct/NAS-NAME/detail {
-#      monthly
-#      rotate 4
-#      create
-#      compress
-#}
+# 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
-        compress
+       monthly
+       rotate 4
+       create
+       missingok
+       compress
 }
 
 /var/log/radius/radius.log {
-        monthly
-        rotate 4
-        create
-        compress
+       monthly
+       rotate 4
+       create
+       missingok
+       compress
 }
 
-/var/log/radius/radwatch.log {
-        monthly
-        rotate 4
-        create
-        compress
+/var/log/radius/radutmp {
+       monthly
+       rotate 4
+       create
+       compress
+       missingok
 }
 
 /var/log/radius/radwtmp {
        rotate 4
        create
        compress
-       postrotate
-               /etc/rc.d/init.d/radiusd reload
-       endscript
+       missingok
+}
+/var/log/radius/sqltrace.sql {
+        monthly
+        rotate 4
+        create
+        compress
+        missingok
 }