blob: 7d9f721abb2b02bd16054106169a26b37b851726 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# manifests/itk.pp
#
# see: http://mpm-itk.sesse.net/
class apache::itk_plus inherits apache::itk {
case $::operatingsystem {
centos: { include ::apache::centos::itk_plus }
default: { fail("itk plus mode is currently only implemented for CentOS") }
}
}
|