add Openstack modules to 3rdparty
[mirror/dsa-puppet.git] / 3rdparty / modules / apache / manifests / mod / shib.pp
1 class apache::mod::shib (
2   $suppress_warning = false,
3 ) {
4
5   if $::osfamily == 'RedHat' and ! $suppress_warning {
6     warning('RedHat distributions do not have Apache mod_shib in their default package repositories.')
7   }
8
9   $mod_shib = 'shib2'
10
11   apache::mod {$mod_shib:
12     id => 'mod_shib',
13   }
14
15 }