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
3186f269
Commit
3186f269
authored
Jun 16, 2016
by
Jonathan
Committed by
GitHub
Jun 16, 2016
Browse files
Merge pull request #37 from ross-w/rw_fix_fixednum
Fix validate_re on guessed fact run
parents
ffd35326
9c02f98b
Changes
1
Hide whitespace changes
Inline
Side-by-side
manifests/params.pp
View file @
3186f269
...
...
@@ -5,35 +5,35 @@ class freeradius::params {
case
$::operatingsystem
{
/RedHat|CentOS/
:
{
$fr_guessversion
=
$::operatingsystemmajrelease
?
{
5
=>
2
,
6
=>
2
,
7
=>
3
,
default
=>
3
,
5
=>
'2'
,
6
=>
'2'
,
7
=>
'3'
,
default
=>
'3'
,
}
}
'Debian'
:
{
$fr_guessversion
=
$::operatingsystemmajrelease
?
{
6
=>
2
,
7
=>
2
,
8
=>
2
,
default
=>
2
,
6
=>
'2'
,
7
=>
'2'
,
8
=>
'2'
,
default
=>
'2'
,
}
}
'Fedora'
:
{
$fr_guessversion
=
$::operatingsystemmajrelease
?
{
21
=>
3
,
22
=>
3
,
23
=>
3
,
default
=>
3
,
21
=>
'3'
,
22
=>
'3'
,
23
=>
'3'
,
default
=>
'3'
,
}
}
'Ubuntu'
:
{
$fr_guessversion
=
$::operatingsystemmajrelease
?
{
'14.04'
=>
2
,
'14.10'
=>
2
,
'15.04'
=>
2
,
'15.10'
=>
2
,
default
=>
2
,
'14.04'
=>
'2'
,
'14.10'
=>
'2'
,
'15.04'
=>
'2'
,
'15.10'
=>
'2'
,
default
=>
'2'
,
}
}
}
...
...
Write
Preview
Markdown
is supported
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