823f009a35
Setting the mod_libs parameter is not required if the library is named "mod_${name}.so". Change-Id: I299dab344af72f5bec82a6a50a54a34dc4185344
15 lines
335 B
Puppet
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',
|
|
})
|
|
}
|
|
}
|
|
}
|