Skip to content
Snippets Groups Projects
Commit f1eb4342 authored by Pedro González Serrano's avatar Pedro González Serrano
Browse files

Use single quotes to allow multi-values

Use single quotes to allow values containing spaces and commas
parent 0537c3b4
No related branches found
No related tags found
No related merge requests found
...@@ -39,7 +39,7 @@ define postfix::config ($value, $ensure = present) { ...@@ -39,7 +39,7 @@ define postfix::config ($value, $ensure = present) {
case $ensure { case $ensure {
present: { present: {
augeas { "set postfix '${name}' to '${value}'": augeas { "set postfix '${name}' to '${value}'":
changes => "set $name $value", changes => "set $name '$value'",
} }
} }
absent: { absent: {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment