Puppet Class: apache::mod::shib

Defined in:
manifests/mod/shib.pp

Overview

Parameters:

  • suppress_warning (Any) (defaults to: false)
  • mod_full_path (Any) (defaults to: undef)
  • package_name (Any) (defaults to: undef)
  • mod_lib (Any) (defaults to: undef)


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'manifests/mod/shib.pp', line 1

class apache::mod::shib (
  $suppress_warning = false,
  $mod_full_path    = undef,
  $package_name     = undef,
  $mod_lib          = undef,
) {
  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',
    path    => $mod_full_path,
    package => $package_name,
    lib     => $mod_lib,
  }
}