Fix update instructions: set GIT_TOKEN before curl call

The example was missing "export GIT_TOKEN=...", causing an empty
Authorization header when copy-pasted as-is.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
Erik Thiele
2026-07-19 20:39:45 +02:00
parent 0d2e33f899
commit 39058d09e2

View File

@@ -161,6 +161,7 @@ Script zieht per `git pull`, aktualisiert die Python-Abhängigkeiten und
startet den systemd-Service neu. Auf dem **Proxmox-Host** ausführen: startet den systemd-Service neu. Auf dem **Proxmox-Host** ausführen:
```bash ```bash
export GIT_TOKEN=<dein-token>
CTID=113 bash <(curl -fsSL -H "Authorization: token ${GIT_TOKEN}" \ CTID=113 bash <(curl -fsSL -H "Authorization: token ${GIT_TOKEN}" \
https://gitea.teamthiele.de/ethiele/linkvault/raw/branch/main/scripts/proxmox/update-linkvault.sh) https://gitea.teamthiele.de/ethiele/linkvault/raw/branch/main/scripts/proxmox/update-linkvault.sh)
``` ```