Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Projets publics
puppet-freeradius
Commits
481feccc
Commit
481feccc
authored
Jan 18, 2017
by
Stefan Schlesinger
Browse files
Add correct_escapes=true to radiusd.conf - might cause issues with regexes
parent
c6959118
Changes
1
Hide whitespace changes
Inline
Side-by-side
templates/radiusd.conf.erb
View file @
481feccc
...
@@ -117,6 +117,27 @@ libdir = /usr/lib64/freeradius
...
@@ -117,6 +117,27 @@ libdir = /usr/lib64/freeradius
#
#
pidfile = ${run_dir}/${name}.pid
pidfile = ${run_dir}/${name}.pid
#
# correct_escapes: use correct backslash escaping
#
# Prior to version 3.0.5, the handling of backslashes was a little
# awkward, i.e. "wrong". In some cases, to get one backslash into
# a regex, you had to put 4 in the config files.
#
# Version 3.0.5 fixes that. However, for backwards compatibility,
# the new method of escaping is DISABLED BY DEFAULT. This means
# that upgrading to 3.0.5 won't break your configuration.
#
# If you don't have double backslashes (i.e. \\) in your configuration,
# this won't matter to you. If you do have them, fix that to use only
# one backslash, and then set "correct_escapes = true".
#
# You can check for this by doing:
#
# $ grep '\\\\' $(find raddb -type f -print)
#
correct_escapes = true
# panic_action: Command to execute if the server dies unexpectedly.
# panic_action: Command to execute if the server dies unexpectedly.
#
#
# FOR PRODUCTION SYSTEMS, ACTIONS SHOULD ALWAYS EXIT.
# FOR PRODUCTION SYSTEMS, ACTIONS SHOULD ALWAYS EXIT.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment