Doku-Pfad vereinheitlicht: Clone liegt unter /root/docu statt docu-repo.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
root
2026-06-27 20:08:25 +02:00
parent 6f52d46267
commit 9a6e966ce3
6 changed files with 11 additions and 12 deletions
+2 -2
View File
@@ -41,13 +41,13 @@ docu/
## Auf einem Host bearbeiten & pushen
```bash
cd /root/docu-repo
cd /root/docu
git pull
# Dateien unter pve1/ oder pve2/ editieren
git add -A && git commit -m "Beschreibung" && git push
```
Clone-Pfad auf beiden Nodes: **`/root/docu-repo`**
Clone-Pfad auf beiden Nodes: **`/root/docu`**
## Schnellreferenz Power-Monitoring
+1 -1
View File
@@ -32,7 +32,7 @@
```bash
systemctl status pve-power-mqtt
qm list && pct list
cd /root/docu-repo && git pull
cd /root/docu && git pull
```
Stand: Juni 2026
+1 -1
View File
@@ -46,7 +46,7 @@ Siehe [power-mqtt-agent.md](power-mqtt-agent.md)
| Pfad | Inhalt |
|------|--------|
| `/root/docu-repo` | Dieses docu-Repo (Clone) |
| `/root/docu` | Dieses docu-Repo (Clone) |
| `/root/code/pve-power-mqtt` | Go-Agent |
| `/root/.git-credentials-jeanavril` | Gitea HTTPS-Token |
+1 -1
View File
@@ -38,7 +38,7 @@
nvidia-smi
systemctl status nvidia-persistenced pve-power-mqtt
grep nvidia /etc/pve/lxc/*.conf
cd /root/docu-repo && git pull
cd /root/docu && git pull
```
Stand: Juni 2026
+1 -2
View File
@@ -75,9 +75,8 @@ Vollständige GPU-Doku: [09_GPU-Idle-vollstaendig.md](09_GPU-Idle-vollstaendig.m
| Pfad | Inhalt |
|------|--------|
| `/root/docu-repo` | docu-Repo |
| `/root/docu` | docu-Repo (Git) |
| `/root/code/pve-power-mqtt` | Go-Agent + GPU-Doku |
| `/root/docu/` | Legacy lokale Kopie (optional durch docu-repo ersetzen) |
| `/root/.git-credentials-jeanavril` | Gitea Token |
## Ansible
+5 -5
View File
@@ -6,7 +6,7 @@ Gitea: **https://git.jeanavril.com** · User: **jean**
| Repo | URL | Clone-Pfad auf Hosts |
|------|-----|----------------------|
| docu | https://git.jeanavril.com/jean/docu.git | `/root/docu-repo` |
| docu | https://git.jeanavril.com/jean/docu.git | `/root/docu` |
| server-power | https://git.jeanavril.com/jean/server-power.git | `/root/code/pve-power-mqtt` |
## Authentifizierung (HTTPS)
@@ -36,7 +36,7 @@ credential.helper=store --file /root/.git-credentials-jeanavril
Setzen:
```bash
cd /root/docu-repo # oder /root/code/pve-power-mqtt
cd /root/docu # oder /root/code/pve-power-mqtt
git config --local credential.helper 'store --file /root/.git-credentials-jeanavril'
```
@@ -44,8 +44,8 @@ git config --local credential.helper 'store --file /root/.git-credentials-jeanav
```bash
# Doku
git clone https://git.jeanavril.com/jean/docu.git /root/docu-repo
cd /root/docu-repo
git clone https://git.jeanavril.com/jean/docu.git /root/docu
cd /root/docu
git config --local credential.helper 'store --file /root/.git-credentials-jeanavril'
# Token-Datei anlegen (Inhalt von anderem Host kopieren)
@@ -66,7 +66,7 @@ export PATH="/usr/local/go/bin:$PATH"
## Workflow
```bash
cd /root/docu-repo && git pull
cd /root/docu && git pull
# editieren
git add -A
git commit -m "Kurze Beschreibung"