From bf1969557315aabae8639af4ee1741036102db22 Mon Sep 17 00:00:00 2001 From: Ossi Salmi Date: Sat, 30 Mar 2013 19:29:54 +0200 Subject: [PATCH] Initial support for mod_auth_openid --- apache/manifests/init.pp | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/apache/manifests/init.pp b/apache/manifests/init.pp index f9ab638..8f4be39 100644 --- a/apache/manifests/init.pp +++ b/apache/manifests/init.pp @@ -392,6 +392,18 @@ class apache::mod::auth_kerb { } +# Enable mod_auth_openid. +# +class apache::mod::auth_openid { + + apache::configfile { "auth_openid.conf": + content => "LoadModule authopenid_module modules/mod_auth_openid.so\n", + http => false, + } + +} + + # Install mod_authnz_ldap. # class apache::mod::authnz_ldap {