puppet: Fix accidental conflict on apache2 package.

Apparently, the work to force installation of the Python 3 version of
mod_wsgi was buggy and tried to force uninstall apache2.

Fixes #10318.
This commit is contained in:
Tim Abbott 2018-08-16 14:14:57 -07:00
parent 2f7e4484c8
commit 5021f7b76f
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ class zulip::apache_sso {
$apache_packages = [ 'apache2', 'libapache2-mod-wsgi-py3', ]
package { $apache_packages: ensure => 'installed' }
$apache_former_packages = [ 'apache2', 'libapache2-mod-wsgi', ]
$apache_former_packages = [ 'libapache2-mod-wsgi', ]
package { $apache_former_packages: ensure => 'absent' }
apache2mod { [ 'headers', 'proxy', 'proxy_http', 'rewrite', 'ssl', 'wsgi', ]: