mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 05:23:35 +00:00
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:
@@ -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', ]:
|
||||
|
||||
Reference in New Issue
Block a user