2006-04-16 10:37:08 -04:00
|
|
|
To have radiusd start at boot time, you have to adapt
|
|
|
|
${SYSCONFDIR}/raddb/radiusd.conf and insert the following into /etc/rc.local.
|
|
|
|
|
|
|
|
if [ -x ${PREFIX}/sbin/radiusd ]; then
|
|
|
|
install -d -o _freeradius /var/run/radiusd
|
|
|
|
echo -n ' radiusd'; ${PREFIX}/sbin/radiusd
|
|
|
|
fi
|
|
|
|
|
|
|
|
This will start radiusd and use ${SYSCONFDIR}/raddb/radiusd.conf for the
|
|
|
|
configuration. Example configuration files can be found in
|
2008-06-05 15:49:17 -04:00
|
|
|
${PREFIX}/share/examples/freeradius.
|