This file is indexed.

/usr/share/doc/freeradius/examples/radiusd.cron.daily is in freeradius 2.1.12+dfsg-1.2.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#! /bin/sh
#
# radiusd	Cron script to rotate radiusd log files daily.
#

prefix=/usr
localstatedir=/var
logdir=/var/log/freeradius

umask 027
cd $logdir

# Take care of the standard logfiles.
cd $logdir
if [ -f radius.log ]
then
	savelog -g adm -m 640 -c 3 radius.log > /dev/null
fi

# Rotate "details" files.
if [ ! -d radacct/. ]
then
	exit 0
fi
cd radacct

for LOG in */detail
do
	if [ -f $LOG ]
	then
		savelog -g adm -m 640 -u root -c 3 $LOG >/dev/null
	fi
done