net-dialup/freeradius/files: C’est pas facile la vie
This commit is contained in:
parent
df29f09f10
commit
f353cc14de
|
@ -1,16 +0,0 @@
|
||||||
# Config file for /etc/init.d/radiusd
|
|
||||||
|
|
||||||
# see man pages for radiusd run `radiusd -h`
|
|
||||||
# for valid cmdline options
|
|
||||||
#RADIUSD_OPTS=""
|
|
||||||
|
|
||||||
# Change this value if you change it in /etc/raddb/radiusd.conf
|
|
||||||
pidfile=/var/run/radiusd/radiusd.pid
|
|
||||||
|
|
||||||
# Change these values if you change them in /etc/raddb/radiusd.conf
|
|
||||||
RADIUSD_USER=radius
|
|
||||||
RADIUSD_GROUP=radius
|
|
||||||
|
|
||||||
# If you set up logging to syslog in /etc/raddb/radiusd.conf, you want
|
|
||||||
# to uncomment the following line.
|
|
||||||
#rc_use="logger"
|
|
|
@ -5,7 +5,7 @@
|
||||||
#RADIUSD_OPTS=""
|
#RADIUSD_OPTS=""
|
||||||
|
|
||||||
# Change this value if you change it in /etc/raddb/radiusd.conf
|
# Change this value if you change it in /etc/raddb/radiusd.conf
|
||||||
pidfile=/var/run/radiusd/radiusd.pid
|
pidfile=/run/radiusd/radiusd.pid
|
||||||
|
|
||||||
# Change these values if you change them in /etc/raddb/radiusd.conf
|
# Change these values if you change them in /etc/raddb/radiusd.conf
|
||||||
RADIUSD_USER=radius
|
RADIUSD_USER=radius
|
||||||
|
@ -16,3 +16,7 @@ RADIUSD_LOGPATH=/var/log/radius
|
||||||
# If you set up logging to syslog in /etc/raddb/radiusd.conf, you want
|
# If you set up logging to syslog in /etc/raddb/radiusd.conf, you want
|
||||||
# to uncomment the following line.
|
# to uncomment the following line.
|
||||||
#rc_use="logger"
|
#rc_use="logger"
|
||||||
|
|
||||||
|
# If you use ldap, start the ldap server prior to FreeRADIUS to avoid
|
||||||
|
# startup crashes.
|
||||||
|
#rc_use="ldap"
|
|
@ -1,31 +0,0 @@
|
||||||
#!/sbin/openrc-run
|
|
||||||
# Copyright 1999-2016 Gentoo Foundation
|
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
|
||||||
|
|
||||||
command=/usr/sbin/radiusd
|
|
||||||
command_args="${RADIUSD_OPTS}"
|
|
||||||
pidfile="${pidfile:-/run/radiusd/radiusd.pid}"
|
|
||||||
extra_started_commands="reload"
|
|
||||||
|
|
||||||
depend() {
|
|
||||||
need localmount
|
|
||||||
use dns
|
|
||||||
}
|
|
||||||
|
|
||||||
start_pre() {
|
|
||||||
if [ ! -f /etc/raddb/radiusd.conf ] ; then
|
|
||||||
eerror "No /etc/raddb/radiusd.conf file exists!"
|
|
||||||
return 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
checkpath -m0750 -o "${RADIUSD_USER:-root}:${RADIUSD_GROUP:-root}" -d \
|
|
||||||
$(dirname ${pidfile}) /var/log/radius
|
|
||||||
checkpath -m0750 -o "${RADIUSD_USER:-root}:${RADIUSD_GROUP:-root}" -d \
|
|
||||||
$(dirname ${pidfile}) /run/radiusd
|
|
||||||
}
|
|
||||||
|
|
||||||
reload() {
|
|
||||||
ebegin "Reloading radiusd"
|
|
||||||
kill -HUP $(cat ${pidfile})
|
|
||||||
eend $?
|
|
||||||
}
|
|
Loading…
Reference in a new issue