2020-08-07 09:05:11 +09:00
|
|
|
class openstack_integration::apache {
|
|
|
|
|
|
|
|
include openstack_integration::params
|
|
|
|
include openstack_integration::config
|
|
|
|
|
2023-03-01 10:29:37 +09:00
|
|
|
if ($facts['os']['family'] == 'Debian') {
|
2020-08-07 09:05:11 +09:00
|
|
|
include apache::params
|
|
|
|
class { 'apache':
|
|
|
|
mod_packages => merge($::apache::params::mod_packages, {
|
2021-05-02 23:34:36 +09:00
|
|
|
'wsgi' => 'libapache2-mod-wsgi-py3',
|
2020-08-07 09:05:11 +09:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|