diff options
Diffstat (limited to 'modules/apache')
-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 26ddf4f4..d49cadbf 100644 --- a/modules/apache/manifests/init.pp +++ b/modules/apache/manifests/init.pp @@ -169,12 +169,12 @@ class apache { } if ! $access_logfile { - $real_access_logfile = "$httpd_logdir/$real_vhost-access_log" + $real_access_logfile = "$httpd_logdir/${real_vhost}-access_log" } else { $real_access_logfile = $access_logfile } if ! $error_logfile { - $real_error_logfile = "$httpd_logdir/$real_vhost-error_log" + $real_error_logfile = "$httpd_logdir/${real_vhost}-error_log" } else { $real_error_logfile = $error_logfile } |