From 6e55aa2ce6807fe7e75d18893452540cd2a80dbf Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Sun, 22 Apr 2018 23:48:48 -0700 Subject: [PATCH] puppet: Fix mispelled variable name. Apparently, we weren't uninstalling the old WSGI module properly. --- puppet/zulip/manifests/apache_sso.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/puppet/zulip/manifests/apache_sso.pp b/puppet/zulip/manifests/apache_sso.pp index c0087df64d..727f0fb138 100644 --- a/puppet/zulip/manifests/apache_sso.pp +++ b/puppet/zulip/manifests/apache_sso.pp @@ -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,