-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathprefork.pp
114 lines (109 loc) · 3.4 KB
/
prefork.pp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# @summary
# Installs and configures MPM `prefork`.
#
# @param startservers
# Number of child server processes created at startup.
#
# @param minspareservers
# Minimum number of idle child server processes.
#
# @param maxspareservers
# Maximum number of idle child server processes.
#
# @param serverlimit
# Upper limit on configurable number of processes.
#
# @param maxclients
# Old alias for MaxRequestWorkers.
#
# @param maxrequestworkers
# Maximum number of connections that will be processed simultaneously.
#
# @param maxrequestsperchild
# Old alias for MaxConnectionsPerChild.
#
# @param maxconnectionsperchild
# Limit on the number of connections that an individual child server will handle during its life.
#
# @param listenbacklog
# Maximum length of the queue of pending connections.
#
# @see https://httpd.apache.org/docs/current/mod/prefork.html for additional documentation.
#
class apache::mod::prefork (
Integer $startservers = 8,
Integer $minspareservers = 5,
Integer $maxspareservers = 20,
Integer $serverlimit = 256,
Integer $maxclients = 256,
Optional[Integer] $maxrequestworkers = undef,
Integer $maxrequestsperchild = 4000,
Optional[Integer] $maxconnectionsperchild = undef,
Integer $listenbacklog = 511
) {
include apache
if defined(Class['apache::mod::event']) {
fail('May not include both apache::mod::prefork and apache::mod::event on the same node')
}
if defined(Class['apache::mod::peruser']) {
fail('May not include both apache::mod::prefork and apache::mod::peruser on the same node')
}
if defined(Class['apache::mod::worker']) {
fail('May not include both apache::mod::prefork and apache::mod::worker on the same node')
}
File {
owner => 'root',
group => $apache::params::root_group,
mode => $apache::file_mode,
}
# Template uses:
# - $startservers
# - $minspareservers
# - $maxspareservers
# - $serverlimit
# - $maxclients
# - $maxrequestworkers
# - $maxrequestsperchild
# - $maxconnectionsperchild
$parameters = {
'startservers' => $startservers,
'minspareservers' => $minspareservers,
'maxspareservers' => $maxspareservers,
'serverlimit' => $serverlimit,
'maxrequestworkers' => $maxrequestworkers,
'maxclients' => $maxclients,
'maxconnectionsperchild' => $maxconnectionsperchild,
'maxrequestsperchild' => $maxrequestsperchild,
'listenbacklog' => $listenbacklog,
}
$preforkconffile = $facts['os']['family'] ? {
'Debian' => "${apache::mod_dir}/mpm_prefork.conf",
default => "${apache::mod_dir}/prefork.conf",
}
file { $preforkconffile:
ensure => file,
content => epp('apache/mod/prefork.conf.epp', $parameters),
require => Exec["mkdir ${apache::mod_dir}"],
before => File[$apache::mod_dir],
notify => Class['apache::service'],
}
case $facts['os']['family'] {
'RedHat', 'Debian', 'FreeBSD': {
::apache::mpm { 'prefork':
}
}
'Suse': {
::apache::mpm { 'prefork':
lib_path => '/usr/lib64/apache2-prefork',
}
}
'Gentoo': {
::portage::makeconf { 'apache2_mpms':
content => 'prefork',
}
}
default: {
fail("Unsupported osfamily ${$facts['os']['family']}")
}
}
}