diff --git a/manifests/authinfo/entry.pp b/manifests/authinfo/entry.pp index 13c8c2e..9d525cd 100644 --- a/manifests/authinfo/entry.pp +++ b/manifests/authinfo/entry.pp @@ -87,7 +87,7 @@ $real_values = $values.filter |$item| { length($item) > 2 } # Add quotes to each array element - $quoted_values = $real_values.map |$item| { "`${item}'" } + $quoted_values = $real_values.map |$item| { "\"${item}\"" } # Join to a single string $value = join($quoted_values, ' ')