]> git.donarmstrong.com Git - dsa-puppet.git/blob - 3rdparty/modules/apache/manifests/mod/version.pp
try again, with puppetforge modules, correctly included now
[dsa-puppet.git] / 3rdparty / modules / apache / manifests / mod / version.pp
1 class apache::mod::version(
2   $apache_version = $::apache::apache_version
3 ) {
4
5   if ($::osfamily == 'debian' and versioncmp($apache_version, '2.4') >= 0) {
6     warning("${module_name}: module version_module is built-in and can't be loaded")
7   } else {
8     ::apache::mod { 'version': }
9   }
10 }