puppet: Fix mispelled variable name.

Apparently, we weren't uninstalling the old WSGI module properly.
This commit is contained in:
Tim Abbott 2018-04-22 23:48:48 -07:00
parent 6988f13201
commit 6e55aa2ce6
1 changed files with 1 additions and 1 deletions

View File

@ -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,