blob: 2f5476991a6796b5890687d19e127e5900933018 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# 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 }
}
}
|