/etc/init/freeradius.conf is in freeradius 3.0.16+dfsg-1ubuntu3.
This file is owned by root:root, with mode 0o644.
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 | # freeradius -- Radius server
#
description "Extensible, configurable radius daemon"
author "Michael Vogt <mvo@ubuntu.com>"
start on runlevel [2345]
stop on runlevel [!2345]
respawn
script
if [ -r /etc/default/freeradius ]; then
. /etc/default/freeradius
fi
exec /usr/sbin/freeradius -f $FREERADIUS_OPTIONS
end script
pre-start script
# /var/run may be a tmpfs
if [ ! -d /var/run/freeradius ]; then
mkdir -p /var/run/freeradius
chown freerad:freerad /var/run/freeradius
fi
end script
|