aboutsummaryrefslogtreecommitdiffstats
path: root/modules/apache/manifests/init.pp
diff options
context:
space:
mode:
authorNicolas Vigier <boklm@mageia.org>2011-05-24 09:41:53 +0000
committerNicolas Vigier <boklm@mageia.org>2011-05-24 09:41:53 +0000
commit08dd61bdb93a7005576c380be4d04527da791c30 (patch)
tree221b327dd0f038915b3ee4ecb76d791c3aea6c19 /modules/apache/manifests/init.pp
parent85c785de2b6e83c5db3b929409b8dd84797f98ac (diff)
downloadpuppet-08dd61bdb93a7005576c380be4d04527da791c30.tar
puppet-08dd61bdb93a7005576c380be4d04527da791c30.tar.gz
puppet-08dd61bdb93a7005576c380be4d04527da791c30.tar.bz2
puppet-08dd61bdb93a7005576c380be4d04527da791c30.tar.xz
puppet-08dd61bdb93a7005576c380be4d04527da791c30.zip
change log filename for logrotate
Diffstat (limited to 'modules/apache/manifests/init.pp')
-rw-r--r--modules/apache/manifests/init.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/apache/manifests/init.pp b/modules/apache/manifests/init.pp
index 0ed80a15..2baf6df7 100644
--- a/modules/apache/manifests/init.pp
+++ b/modules/apache/manifests/init.pp
@@ -158,12 +158,12 @@ class apache {
}
if ! $access_logfile {
- $real_access_logfile = "$httpd_logdir/access_log-$real_vhost"
+ $real_access_logfile = "$httpd_logdir/$real_vhost-access_log"
} else {
$real_access_logfile = $access_logfile
}
if ! $error_logfile {
- $real_error_logfile = "$httpd_logdir/error_log-$real_vhost"
+ $real_error_logfile = "$httpd_logdir/$real_vhost-error_log"
} else {
$real_error_logfile = $error_logfile
}