diff options
-rw-r--r-- | modules/apache/manifests/init.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/apache/manifests/init.pp b/modules/apache/manifests/init.pp index 08f294c3..cc7e00ff 100644 --- a/modules/apache/manifests/init.pp +++ b/modules/apache/manifests/init.pp @@ -158,10 +158,10 @@ class apache { } if ! $access_logfile { - $access_logfile = $httpd_logdir/access_log-$real_vhost + $access_logfile = "$httpd_logdir/access_log-$real_vhost" } if ! $error_logfile { - $error_logfile = $httpd_logdir/error_log-$real_vhost + $error_logfile = "$httpd_logdir/error_log-$real_vhost" } if $use_ssl { |