From f3ee02d2d393ec24f5ccb033c446d9b4f29e92de Mon Sep 17 00:00:00 2001 From: Scott Wallace Date: Wed, 30 Mar 2022 09:21:30 +0100 Subject: [PATCH] Update bootstrap messages --- docker-entrypoint.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index 24e6918..40a9956 100644 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -21,10 +21,13 @@ if ! test -f ${DATA_DIR}/host.crt; then cd ${DATA_DIR} || exit 1 if ! test -d ${DATA_DIR}/host.csr; then "${BIN_DIR}/nebula-cert" keygen -out-key host.key -out-pub host.csr + # shellcheck disable=SC2016 echo 'You will need to get the `host.csr` file signed by a cluster admin' + echo "Provide them with the hostname (${HOSTNAME}) and the \`host.csr\` file" exit 3 else - echo 'Awaiting `host.csr` to be signed' + # shellcheck disable=SC2016 + echo 'Awaiting for `host.csr` to be signed by a cluster admin' exit 4 fi fi