From 80589099d8f617c9cd0b5366d2c6f4bdb4f1c1c3 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Sun, 14 Jun 2020 16:04:39 -0700 Subject: [PATCH] puppet: Fix typo in logic for whether to install certbot. Fixes #15372. --- puppet/zulip/manifests/nginx.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/puppet/zulip/manifests/nginx.pp b/puppet/zulip/manifests/nginx.pp index 58012ed8b8..8e7e5f736a 100644 --- a/puppet/zulip/manifests/nginx.pp +++ b/puppet/zulip/manifests/nginx.pp @@ -95,7 +95,7 @@ class zulip::nginx { mode => '0650' } - $certbot_auto_renew = zulipconf('cerbot', 'auto_renew', '') + $certbot_auto_renew = zulipconf('certbot', 'auto_renew', '') if $certbot_auto_renew == 'yes' { package { 'certbot': ensure => 'installed',