From: Silvio Rhatto Date: Sun, 6 Mar 2016 16:39:52 +0000 (-0300) Subject: Quote title param (2) X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=43d18a0c0a01591c13495f90ebf8b912eee7f245;p=puppet-apache.git Quote title param (2) --- diff --git a/manifests/site.pp b/manifests/site.pp index e53b75a..b018501 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -41,12 +41,12 @@ define apache::site( $hosting_domain = hiera('apache::site::domain', $::domain) $user = $mpm_user ? { - '' => regsubst(${title}, '\.', '_', 'G'), + '' => regsubst($title, '\.', '_', 'G'), default => $mpm_user, } $gid = $mpm_group ? { - '' => regsubst(${title}, '\.', '_', 'G'), + '' => regsubst($title, '\.', '_', 'G'), default => $mpm_group, }