This commit is contained in:
L Mwangi 2024-09-17 14:03:20 -04:00 committed by GitHub
commit 407df7f3ba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -24,7 +24,13 @@ configuration (`/etc/headscale/config.yaml`).
```shell
HEADSCALE_VERSION="" # See above URL for latest version, e.g. "X.Y.Z" (NOTE: do not add the "v" prefix!)
# Or you can use the following bash one liner which intercepts the latest redirect to a specific version number and extracts the version.
# HEADSCALE_VERSION="$(curl -v https://github.com/juanfont/headscale/releases/latest 2>&1 | grep location | awk -F'/' '{print $NF}' | sed -e 's/v//' | tr -d '\r')"
HEADSCALE_ARCH="" # Your system architecture, e.g. "amd64"
# Or you can use dpkg to figure out the architecture of the box.
# HEADSCALE_ARCH="$(dpkg --print-architecture)"
wget --output-document=headscale.deb \
"https://github.com/juanfont/headscale/releases/download/v${HEADSCALE_VERSION}/headscale_${HEADSCALE_VERSION}_linux_${HEADSCALE_ARCH}.deb"
```