Merge "Clean up unnecessary workaround related to puppetlabs-apache"

This commit is contained in:
Zuul 2024-03-06 19:38:08 +00:00 committed by Gerrit Code Review
commit 3850a45069
1 changed files with 1 additions and 19 deletions

View File

@ -1,23 +1,5 @@
class packstack::apache ()
{
# Use python3 for mod_wsg in fedora
if ($::operatingsystem == 'Fedora') or ($::osfamily == 'RedHat' and Integer.new($::operatingsystemmajrelease) > 7) {
class { 'apache':
mod_packages => merge($::apache::params::mod_packages, {
'wsgi' => 'python3-mod_wsgi',
}),
mod_libs => merge($::apache::params::mod_libs, {
'wsgi' => 'mod_wsgi_python3.so',
})
}
}else{
class { 'apache':
}
}
if lookup('CONFIG_HORIZON_SSL') == 'y' {
ensure_packages(['mod_ssl'], {'ensure' => 'present'})
Package['mod_ssl'] -> Class['apache']
}
class { 'apache': }
}