blob: 5292343deb4c0cb8133b2968ac2d018439059811 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# manifests/itk.pp
#
# see: http://mpm-itk.sesse.net/
class apache::itk inherits apache {
case $::operatingsystem {
centos: { include ::apache::centos::itk }
debian: { include ::apache::debian::itk }
default: { include ::apache::base::itk }
}
}
|