kandra: Remove unnecessary libapache2-mod-wsgi.

It does not exist in 22.04, and its last use was removed in
61666a9262.
This commit is contained in:
Alex Vandiver 2024-03-21 20:58:26 +00:00 committed by Tim Abbott
parent 9d8d2d138b
commit 75411b264e
1 changed files with 3 additions and 5 deletions

View File

@ -1,9 +1,7 @@
class kandra::apache {
$apache_packages = [# Needed to run Apache with WSGI
'apache2',
'libapache2-mod-wsgi',
]
package { $apache_packages: ensure => installed }
package { 'apache2':
ensure => installed,
}
service { 'apache2':
require => Package['apache2'],
}