From 374fa7db3414d539facf047311a748f659d59bc9 Mon Sep 17 00:00:00 2001 From: 3wc <3wc@doesthisthing.work> Date: Thu, 31 Jul 2025 13:56:56 +0100 Subject: [PATCH] Bail on missing `host` option --- plugin.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.sh b/plugin.sh index ec7962f..23d78d0 100755 --- a/plugin.sh +++ b/plugin.sh @@ -3,7 +3,7 @@ set -e PLUGIN_COMPOSE=${PLUGIN_COMPOSE:-compose.yml} -PLUGIN_HOST=${PLUGIN_HOST:-swarm.autonomic.zone} +PLUGIN_HOST=${PLUGIN_HOST:?'host' option not provided} PLUGIN_PORT=${PLUGIN_PORT:-222} PLUGIN_PURGE=${PLUGIN_PURGE:-"false"} PLUGIN_USER=${PLUGIN_USER:-drone}