From 2deda550cf6d46b7a1b3d9d83a09f63e50305a7e Mon Sep 17 00:00:00 2001 From: Sam Edwards Date: Fri, 31 May 2024 14:28:43 -0700 Subject: [PATCH] Update docs for behaviour of haproxy deploy reload command --- deployhooks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployhooks.md b/deployhooks.md index e85634b..c8cd46e 100644 --- a/deployhooks.md +++ b/deployhooks.md @@ -322,7 +322,7 @@ You must specify the path where you want the concatenated key and certificate ch export DEPLOY_HAPROXY_PEM_PATH=/etc/haproxy ``` -You may optionally define the command to reload HAProxy. The value shown below will be used as the default if you don't set this environment variable. +You may optionally define the command to reload HAProxy. If you don't set this environment variable, a no-op command (`true`) is used, which will show success, but _will not_ reload HAProxy. **It is strongly recommended to set this something that makes sense for your distro.** ```sh export DEPLOY_HAPROXY_RELOAD="/usr/sbin/service haproxy restart"