From fb3c03a4150a1f8b289343e4d5094ee2c6d39919 Mon Sep 17 00:00:00 2001 From: Pawan Pawar <46382202+Pawa2NR@users.noreply.github.com> Date: Tue, 23 Apr 2024 14:22:03 +0200 Subject: [PATCH] Class mod ratelimit added --- manifests/mod/ratelimit.pp | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 manifests/mod/ratelimit.pp diff --git a/manifests/mod/ratelimit.pp b/manifests/mod/ratelimit.pp new file mode 100644 index 000000000..93a4cb44b --- /dev/null +++ b/manifests/mod/ratelimit.pp @@ -0,0 +1,8 @@ +# @summary +# Installs Apache mod_ratelimit +# +# @see https://httpd.apache.org/docs/2.4/mod/mod_ratelimit.html for additional documentation. +# +class apache::mod::ratelimit { + apache::mod { 'ratelimit': } +}