Puppet Class: apache::mod::shib
- Defined in:
 - manifests/mod/shib.pp
 
Overview
        1 2 3 4 5 6 7 8 9 10 11 12 13 14 15  | 
      
        # File 'manifests/mod/shib.pp', line 1
class apache::mod::shib (
  $suppress_warning = false,
) {
  include ::apache
  if $::osfamily == 'RedHat' and ! $suppress_warning {
    warning('RedHat distributions do not have Apache mod_shib in their default package repositories.')
  }
  $mod_shib = 'shib2'
  apache::mod {$mod_shib:
    id => 'mod_shib',
  }
}
       |