mirror of https://github.com/zulip/zulip.git
puppet: Fix mispelled variable name.
Apparently, we weren't uninstalling the old WSGI module properly.
This commit is contained in:
parent
6988f13201
commit
6e55aa2ce6
|
@ -5,7 +5,7 @@ class zulip::apache_sso {
|
|||
package { $apache_packages: ensure => "installed" }
|
||||
|
||||
$apache_former_packages = [ "apache2", "libapache2-mod-wsgi", ]
|
||||
package { $apache_legacy_packages: ensure => "absent" }
|
||||
package { $apache_former_packages: ensure => "absent" }
|
||||
|
||||
apache2mod { [ "headers", "proxy", "proxy_http", "rewrite", "ssl", "wsgi", ]:
|
||||
ensure => present,
|
||||
|
|
Loading…
Reference in New Issue