Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
puppet-freeradius
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Projets publics
puppet-freeradius
Commits
6045d72a
Commit
6045d72a
authored
Oct 8, 2015
by
Jonathan Gazeley
Browse files
Options
Downloads
Patches
Plain Diff
Add parametrised options to config for FR3
parent
a8569a4f
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
templates/radiusd.conf.fr3.erb
+7
-7
7 additions, 7 deletions
templates/radiusd.conf.fr3.erb
with
7 additions
and
7 deletions
templates/radiusd.conf.fr3.erb
+
7
−
7
View file @
6045d72a
...
@@ -55,13 +55,13 @@ exec_prefix = /usr
...
@@ -55,13 +55,13 @@ exec_prefix = /usr
sysconfdir = /etc
sysconfdir = /etc
localstatedir = /var
localstatedir = /var
sbindir = /usr/sbin
sbindir = /usr/sbin
logdir =
${localstatedir}/log/radius
logdir =
<%=
@fr_logpath
%>
raddbdir = ${sysconfdir}/raddb
raddbdir = ${sysconfdir}/raddb
radacctdir = ${logdir}/radacct
radacctdir = ${logdir}/radacct
#
#
# name of the running server. See also the "-n" command-line option.
# name of the running server. See also the "-n" command-line option.
name =
radiusd
name =
<%=
@fr_service
%>
# Location of config and logfiles.
# Location of config and logfiles.
confdir = ${raddbdir}
confdir = ${raddbdir}
...
@@ -207,7 +207,7 @@ cleanup_delay = 5
...
@@ -207,7 +207,7 @@ cleanup_delay = 5
#
#
# Useful range of values: 256 to infinity
# Useful range of values: 256 to infinity
#
#
max_requests =
1024
max_requests =
<%=
@max_requests
%>
# hostname_lookups: Log the names of clients or just their IP addresses
# hostname_lookups: Log the names of clients or just their IP addresses
# e.g., www.freeradius.org (on) or 206.47.27.232 (off).
# e.g., www.freeradius.org (on) or 206.47.27.232 (off).
...
@@ -414,8 +414,8 @@ security {
...
@@ -414,8 +414,8 @@ security {
# member. This can allow for some finer-grained access
# member. This can allow for some finer-grained access
# controls.
# controls.
#
#
user =
radiusd
user =
<%=
@fr_user
%>
group =
radiusd
group =
<%=
@fr_group
%>
# Core dumps are a bad thing. This should only be set to
# Core dumps are a bad thing. This should only be set to
# 'yes' if you're debugging a problem with the server.
# 'yes' if you're debugging a problem with the server.
...
@@ -555,7 +555,7 @@ thread pool {
...
@@ -555,7 +555,7 @@ thread pool {
#
#
# For more information, see 'max_request_time', above.
# For more information, see 'max_request_time', above.
#
#
max_servers =
32
max_servers =
<%=
@max_servers
%>
# Server-pool size regulation. Rather than making you guess
# Server-pool size regulation. Rather than making you guess
# how many servers you need, FreeRADIUS dynamically adapts to
# how many servers you need, FreeRADIUS dynamically adapts to
...
@@ -667,7 +667,7 @@ modules {
...
@@ -667,7 +667,7 @@ modules {
# section, such as authorize, authenticate, accounting,
# section, such as authorize, authenticate, accounting,
# pre/post-proxy, etc.
# pre/post-proxy, etc.
#
#
$INCLUDE
mods-enabled/
$INCLUDE
<%=
@fr_moduledir
%>
}
}
# Instantiation
# Instantiation
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment