keep using zrok-share for frontdoor and zrok-agent for the user service

This commit is contained in:
Kenneth Bingham 2025-03-20 21:50:18 -04:00
parent 485f60e552
commit 93bfb868cf
No known key found for this signature in database
GPG Key ID: 31709281860130B6
3 changed files with 23 additions and 6 deletions

View File

@ -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
```

View File

@ -3,15 +3,15 @@
```bash ```bash
curl -sSLf https://get.openziti.io/install.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" ```bash title="Ubuntu, Debian"
sudo apt install zrok-agent sudo apt install zrok-share
``` ```
```bash title="Fedora, Rocky" ```bash title="Fedora, Rocky"
sudo dnf install zrok-agent sudo dnf install zrok-share
``` ```

View File

@ -3,7 +3,7 @@ title: Linux Agent Service
sidebar_position: 40 sidebar_position: 40
--- ---
import LinuxShareInstall from '/../docs/guides/_linux-share-install.mdx' import LinuxAgentInstall from '/../docs/guides/_linux-agent-install.mdx'
## Overview ## 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. The package provides the `zrok` executable and the `zrok-agent.service` unit.
<LinuxShareInstall /> <LinuxAgentInstall />
## Enable your Account ## Enable your Account