From 823f009a353108d4e84f047b1ce634eb2da10f60 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Thu, 18 Aug 2022 00:20:55 +0900 Subject: [PATCH] Ubuntu/Debian: Remove unnecessary override of apache::mod_libs Setting the mod_libs parameter is not required if the library is named "mod_${name}.so". Change-Id: I299dab344af72f5bec82a6a50a54a34dc4185344 --- manifests/apache.pp | 3 --- 1 file changed, 3 deletions(-) diff --git a/manifests/apache.pp b/manifests/apache.pp index 2bf236f09..9b5a9370f 100644 --- a/manifests/apache.pp +++ b/manifests/apache.pp @@ -8,9 +8,6 @@ class openstack_integration::apache { class { 'apache': mod_packages => merge($::apache::params::mod_packages, { 'wsgi' => 'libapache2-mod-wsgi-py3', - }), - mod_libs => merge($::apache::params::mod_libs, { - 'wsgi' => 'mod_wsgi.so', }) } }