From: Peter Palfrader Date: Fri, 1 Jun 2018 09:00:10 +0000 (+0200) Subject: add apache::authn_anon and apache::auth_digest X-Git-Url: https://git.adam-barratt.org.uk/?p=mirror%2Fdsa-puppet.git;a=commitdiff_plain;h=66d60da21f12709b55a7a819434eeec2959588aa add apache::authn_anon and apache::auth_digest --- diff --git a/modules/apache2/manifests/auth_digest.pp b/modules/apache2/manifests/auth_digest.pp new file mode 100644 index 000000000..377d14dae --- /dev/null +++ b/modules/apache2/manifests/auth_digest.pp @@ -0,0 +1,3 @@ +class apache2::auth_digest { + apache2::module { 'auth_digest': } +} diff --git a/modules/apache2/manifests/authn_anon.pp b/modules/apache2/manifests/authn_anon.pp new file mode 100644 index 000000000..2488cd9d0 --- /dev/null +++ b/modules/apache2/manifests/authn_anon.pp @@ -0,0 +1,3 @@ +class apache2::authn_anon { + apache2::module { 'authn_anon': } +}