
... because the latest lint no longer allows usage of legacy facts and top scope fact. Change-Id: I25d27829f66c4ee56e2755579dad21530ef09c3a
15 lines
342 B
Puppet
15 lines
342 B
Puppet
class openstack_integration::apache {
|
|
|
|
include openstack_integration::params
|
|
include openstack_integration::config
|
|
|
|
if ($facts['os']['family'] == 'Debian') {
|
|
include apache::params
|
|
class { 'apache':
|
|
mod_packages => merge($::apache::params::mod_packages, {
|
|
'wsgi' => 'libapache2-mod-wsgi-py3',
|
|
})
|
|
}
|
|
}
|
|
}
|