blob: 16bcf3d5d68223dbc239730c8d06c55b71dbbf2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# manifests/itk.pp
#
# see: http://mpm-itk.sesse.net/
class apache::itk inherits apache {
case $operatingsystem {
centos: { include apache::centos::itk }
default: { include apache::base::itk }
}
}
class apache::base::itk inherits apache::base {
Package['apache'] {
name => 'apache2-itk',
}
}
# http://hostby.net/home/2008/07/12/centos-5-and-mpm-itk/
class apache::centos::itk inherits apache::centos {
Package['apache']{
name => 'httpd-itk',
}
}
|