From 93bfb868cfaebdb0f336c5ad48427dfe6b6c4bf1 Mon Sep 17 00:00:00 2001 From: Kenneth Bingham Date: Thu, 20 Mar 2025 21:50:18 -0400 Subject: [PATCH] keep using zrok-share for frontdoor and zrok-agent for the user service --- docs/guides/_linux-agent-install.mdx | 17 +++++++++++++++++ docs/guides/_linux-share-install.mdx | 8 ++++---- docs/guides/linux-agent-service.mdx | 4 ++-- 3 files changed, 23 insertions(+), 6 deletions(-) create mode 100644 docs/guides/_linux-agent-install.mdx diff --git a/docs/guides/_linux-agent-install.mdx b/docs/guides/_linux-agent-install.mdx new file mode 100644 index 00000000..088dc04e --- /dev/null +++ b/docs/guides/_linux-agent-install.mdx @@ -0,0 +1,17 @@ + +1. Set up `zrok`'s Linux package repository by following [the Linux install guide](/guides/install/linux.mdx#install-zrok-from-the-repository), or run this one-liner to complete the repo setup and install packages. + + ```bash + curl -sSLf https://get.openziti.io/install.bash \ + | sudo bash -s zrok-agent + ``` + +1. If you set up the repository by following the guide, then also install the `zrok-agent` package. This package provides the systemd service. + + ```bash title="Ubuntu, Debian" + sudo apt install zrok-agent + ``` + + ```bash title="Fedora, Rocky" + sudo dnf install zrok-agent + ``` diff --git a/docs/guides/_linux-share-install.mdx b/docs/guides/_linux-share-install.mdx index 088dc04e..acea45b2 100644 --- a/docs/guides/_linux-share-install.mdx +++ b/docs/guides/_linux-share-install.mdx @@ -3,15 +3,15 @@ ```bash curl -sSLf https://get.openziti.io/install.bash \ - | sudo bash -s zrok-agent + | sudo bash -s zrok-share ``` -1. If you set up the repository by following the guide, then also install the `zrok-agent` package. This package provides the systemd service. +1. If you set up the repository by following the guide, then also install the `zrok-share` package. This package provides the systemd service. ```bash title="Ubuntu, Debian" - sudo apt install zrok-agent + sudo apt install zrok-share ``` ```bash title="Fedora, Rocky" - sudo dnf install zrok-agent + sudo dnf install zrok-share ``` diff --git a/docs/guides/linux-agent-service.mdx b/docs/guides/linux-agent-service.mdx index fe728be1..cea33115 100644 --- a/docs/guides/linux-agent-service.mdx +++ b/docs/guides/linux-agent-service.mdx @@ -3,7 +3,7 @@ title: Linux Agent Service sidebar_position: 40 --- -import LinuxShareInstall from '/../docs/guides/_linux-share-install.mdx' +import LinuxAgentInstall from '/../docs/guides/_linux-agent-install.mdx' ## Overview @@ -13,7 +13,7 @@ Run the zrok agent as a `systemd --user` service under your Linux user account. The package provides the `zrok` executable and the `zrok-agent.service` unit. - + ## Enable your Account