]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - 3rdparty/modules/apache/manifests/mod/shib.pp
add Openstack modules to 3rdparty
[dsa-puppet.git] / 3rdparty / modules / apache / manifests / mod / shib.pp
diff --git a/3rdparty/modules/apache/manifests/mod/shib.pp b/3rdparty/modules/apache/manifests/mod/shib.pp
new file mode 100644 (file)
index 0000000..8ec4c6d
--- /dev/null
@@ -0,0 +1,15 @@
+class apache::mod::shib (
+  $suppress_warning = false,
+) {
+
+  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',
+  }
+
+}
\ No newline at end of file