Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
puppet-icinga2_testing
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
15
Issues
15
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
testing
puppet-icinga2_testing
Commits
b057c499
Commit
b057c499
authored
Jun 14, 2017
by
Markus Frosch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
backend_group: Quote values for icingaweb2 ini
parent
42905c15
Pipeline
#369
failed with stage
in 1 minute and 2 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
9 deletions
+8
-9
manifests/profiles/icingaweb2/backend_group.pp
manifests/profiles/icingaweb2/backend_group.pp
+8
-9
No files found.
manifests/profiles/icingaweb2/backend_group.pp
View file @
b057c499
...
...
@@ -33,57 +33,56 @@ define icinga2_testing::profiles::icingaweb2::backend_group(
default
=>
present
},
setting
=>
'backend'
,
value
=>
$backend
;
value
=>
"
\"
${backend}
\"
"
;
"icingaweb2 group
${name}
resource"
:
ensure
=>
$resource
?
{
undef
=>
absent
,
default
=>
present
},
setting
=>
'resource'
,
value
=>
$resource
;
value
=>
"
\"
${resource}
\"
"
;
"icingaweb2 group
${name}
user_backend"
:
ensure
=>
$user_backend
?
{
undef
=>
absent
,
default
=>
present
},
setting
=>
'user_backend'
,
value
=>
$user_backend
;
value
=>
"
\"
${user_backend}
\"
"
;
"icingaweb2 group
${name}
group_class"
:
ensure
=>
$group_class
?
{
undef
=>
absent
,
default
=>
present
},
setting
=>
'group_class'
,
value
=>
$group_class
;
value
=>
"
\"
${group_class}
\"
"
;
"icingaweb2 group
${name}
group_name_attribute"
:
ensure
=>
$group_name_attribute
?
{
undef
=>
absent
,
default
=>
present
},
setting
=>
'group_name_attribute'
,
value
=>
$group_name_attribute
;
value
=>
"
\"
${group_name_attribute}
\"
"
;
"icingaweb2 group
${name}
group_member_attribute"
:
ensure
=>
$group_member_attribute
?
{
undef
=>
absent
,
default
=>
present
},
setting
=>
'group_member_attribute'
,
value
=>
$group_member_attribute
;
value
=>
"
\"
${group_member_attribute}
\"
"
;
"icingaweb2 group
${name}
group_filter"
:
ensure
=>
$group_filter
?
{
undef
=>
absent
,
default
=>
present
},
setting
=>
'group_filter'
,
value
=>
$group_filter
;
value
=>
"
\"
${group_filter}
\"
"
;
"icingaweb2 group
${name}
base_dn"
:
ensure
=>
$base_dn
?
{
undef
=>
absent
,
default
=>
present
},
setting
=>
'base_dn'
,
value
=>
$base_dn
;
value
=>
"
\"
${base_dn}
\"
"
;
}
# lint:endignore
}
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