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 Camptocamp Postfix
Commits
885b3280
Commit
885b3280
authored
Jan 07, 2015
by
Raphaël Pinson
Browse files
Fix unquoted strings in cases
parent
e349e259
Changes
1
Hide whitespace changes
Inline
Side-by-side
manifests/config.pp
View file @
885b3280
...
...
@@ -49,17 +49,17 @@ define postfix::config ($value = undef, $ensure = 'present') {
}
case
$ensure
{
present
:
{
'
present
'
:
{
augeas
{
"set postfix '
${name}
' to '
${value}
'"
:
changes
=>
"set
${name}
'
${value}
'"
,
}
}
absent
:
{
'
absent
'
:
{
augeas
{
"rm postfix '
${name}
'"
:
changes
=>
"rm
${name}
"
,
}
}
blank
:
{
'
blank
'
:
{
augeas
{
"blank postfix '
${name}
'"
:
changes
=>
"clear
${name}
"
,
}
...
...
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