From f9956e16b96a506a93492f1aaaee0607aa3fa2ec Mon Sep 17 00:00:00 2001 From: gberl002 Date: Tue, 15 Aug 2023 14:52:40 -0400 Subject: [PATCH] Adding lsof to the prerequisite check closes #1233 Signed-off-by: gberl002 --- CHANGELOG.md | 1 + quickstart/docker/image/ziti-cli-functions.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9457fa185..59216931d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ * github.com/openziti/ziti: [v0.30.0 -> v0.30.1](https://github.com/openziti/ziti/compare/v0.28.4...v0.29.0) * [Issue #1225](https://github.com/openziti/ziti/issues/1225) - Updated ZITI_ROUTER_ADVERTISED_HOST to use the more common naming convention of ZITI_ROUTER_ADVERTISED_ADDRESS + * [Issue #1233](https://github.com/openziti/ziti/issues/1233) - Added `lsof` to the list of prerequisites to be checked during quickstart # Release 0.30.0 diff --git a/quickstart/docker/image/ziti-cli-functions.sh b/quickstart/docker/image/ziti-cli-functions.sh index 159d3df0a..c0a4cc61c 100644 --- a/quickstart/docker/image/ziti-cli-functions.sh +++ b/quickstart/docker/image/ziti-cli-functions.sh @@ -1005,7 +1005,7 @@ function expressInstall { _issue_preamble # This is redundant but better to check here to prevent going any further - _check_prereq curl jq tar hostname + _check_prereq curl jq tar hostname lsof retVal=$? if [ $retVal -ne 0 ]; then return 1