author | ymh <ymh.work@gmail.com> |
Fri, 15 Jan 2016 15:35:00 +0100 | |
changeset 28 | b0b56e0f8c7f |
permissions | -rw-r--r-- |
28 | 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 |
} |