mirror of https://github.com/zulip/zulip.git
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:
parent
2f7e4484c8
commit
5021f7b76f
|
@ -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', ]:
|
||||
|
|
Loading…
Reference in New Issue