From 117d32cd8c49cda43f1b44d1f7c770f96058bd94 Mon Sep 17 00:00:00 2001 From: Alex Vandiver Date: Thu, 25 Jun 2020 22:09:33 +0000 Subject: [PATCH] installer: Switch to checking dockervoyager as a class, not a deployment. The DEPLOYMENT_TYPE=dockervoyager is otherwise unused; and always happens in conjunction with a `zulip::dockervoyager` puppet class. --- scripts/lib/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lib/install b/scripts/lib/install index 9738fe1298..3bb81ba36f 100755 --- a/scripts/lib/install +++ b/scripts/lib/install @@ -416,7 +416,7 @@ elif [ "$package_system" = yum ]; then : fi -if has_class "zulip::nginx" && [ ! "$DEPLOYMENT_TYPE" = "dockervoyager" ]; then +if has_class "zulip::nginx" && ! has_class "zulip::dockervoyager"; then # Check nginx was configured properly now that we've installed it. # Most common failure mode is certs not having been installed. if ! nginx -t; then