puppet-openstack-integration/manifests/apache.pp
Takashi Kajinami 823f009a35 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
2022-08-18 00:26:58 +09:00

15 lines
335 B
Puppet

class openstack_integration::apache {
include openstack_integration::params
include openstack_integration::config
if ($::os['family'] == 'Debian') {
include apache::params
class { 'apache':
mod_packages => merge($::apache::params::mod_packages, {
'wsgi' => 'libapache2-mod-wsgi-py3',
})
}
}
}