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
e78aac84
Commit
e78aac84
authored
Mar 04, 2015
by
Jonathan Gazeley
Browse files
Fix two typos which break the parser
parent
446f80e8
Changes
2
Hide whitespace changes
Inline
Side-by-side
manifests/blank.pp
View file @
e78aac84
...
...
@@ -9,7 +9,7 @@ define freeradius::blank {
mode
=>
'0644'
,
owner
=>
'root'
,
group
=>
$fr_group
,
require
=>
[
File
[
$
{
fr_basepath
}
],
Package
[
$fr_package
],
Group
[
$fr_group
]],
require
=>
[
File
[
$fr_basepath
],
Package
[
$fr_package
],
Group
[
$fr_group
]],
notify
=>
Service
[
$fr_service
],
content
=>
"# This file is intentionally left blank to reduce complexity. Blanking it but leaving it present is safer than deleting it, since the package manager will replace some files if they are deleted, leading to unexpected behaviour!"
,
}
...
...
manifests/sql.pp
View file @
e78aac84
...
...
@@ -39,7 +39,7 @@ define freeradius::sql (
}
# Hostnames
unless
(
is_hostname
(
$server
)
or
is_ip_address
(
$server
)
{
unless
(
is_hostname
(
$server
)
or
is_ip_address
(
$server
)
)
{
fail
(
'$server must be a valid hostname or IP address'
)
}
...
...
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