blob: 63b1878d89be885ba03c51b3ede0e20da8144482 (
plain)
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
|
class apache {
class base {
package { "apache-mpm-prefork":
alias => apache,
ensure => installed
}
service { httpd:
alias => apache,
ensure => running,
subscribe => [ Package['apache-mpm-prefork'] ],
}
file { "customization.conf":
ensure => present,
path => "/etc/httpd/conf.d/customization.conf",
content => template("apache/customization.conf"),
require => Package["apache"],
notify => Service["apache"],
owner => root,
group => root,
mode => 644,
}
}
class mod_php inherits base {
package { "apache-mod_php":
ensure => installed
}
}
class mod_perl inherits base {
package { "apache-mod_perl":
ensure => installed
}
}
class mod_fcgid inherits base {
package { "apache-mod_fcgid":
ensure => installed
}
}
class mod_fastcgi inherits base {
package { "apache-mod_fastcgi":
ensure => installed
}
}
class mod_wsgi inherits base {
package { "apache-mod_wsgi":
ensure => installed
}
}
}
|