dev/provisioning/modules/apache/manifests/mod/shib.pp
changeset 28 b0b56e0f8c7f
equal deleted inserted replaced
27:a2342f26c9de 28:b0b56e0f8c7f
       
     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 }