blob: 2c33a23f1ab97774475288e5e02d4cedb8623478 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $httpdlogs_rotate:
# number of time the log file are rotated before being removed
# $default_vhost_redirect:
# URL to redirect to in case of unknown vhost
class apache::var(
$httpdlogs_rotate = '24',
$apache_user = 'apache',
$apache_group = 'apache',
$default_vhost_redirect = ''
) {
if ($::lsbdistrelease == '1') or ($::lsbdistid == 'MandrivaLinux') {
$pkg_conf = 'apache-conf'
} else {
$pkg_conf = 'apache'
}
}
|