From 4cf36cd8bde5f966dca2c24ea401361efa9ad0d8 Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Wed, 16 Apr 2025 23:20:28 +1000 Subject: [PATCH] docs(kb): update path to Gateway to new location (#8794) In #8480, we changed the location that `firezone-gateway` gets downloaded to but forgot to update the knowledgebase with the new path. --------- Signed-off-by: Thomas Eizinger --- scripts/gateway-systemd-install.sh | 2 +- website/src/app/kb/administer/upgrading/readme.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/gateway-systemd-install.sh b/scripts/gateway-systemd-install.sh index 27d808834..2ec6ae686 100755 --- a/scripts/gateway-systemd-install.sh +++ b/scripts/gateway-systemd-install.sh @@ -152,7 +152,7 @@ if [ ! -e "\$BINARY_PATH" ]; then else echo "\$BINARY_PATH.download is not an executable!" echo "Ensure '${FIREZONE_ARTIFACT_URL}/${FIREZONE_VERSION}/\$arch' is accessible from this machine," - echo "or download binary manually and install to /usr/local/bin/firezone-gateway." + echo "or download binary manually and install to \$BINARY_PATH" exit 1 fi else diff --git a/website/src/app/kb/administer/upgrading/readme.mdx b/website/src/app/kb/administer/upgrading/readme.mdx index 8e316aa8a..4feed7139 100644 --- a/website/src/app/kb/administer/upgrading/readme.mdx +++ b/website/src/app/kb/administer/upgrading/readme.mdx @@ -56,7 +56,7 @@ and restart the service to trigger the upgrade: sudo systemctl stop firezone-gateway # Move the old binary to a backup location -sudo mv /usr/local/bin/firezone-gateway /usr/local/bin/firezone-gateway.bak +sudo mv /opt/firezone/bin/firezone-gateway /opt/firezone/bin/firezone-gateway.bak # Start the Gateway service to trigger the upgrade sudo systemctl start firezone-gateway