fix: Korrigiere Download-URLs von localhost zu git.pp1l.de
ci/woodpecker/push/woodpecker Pipeline failed Details

- Ändere install.sh: localhost:3000 → git.pp1l.de
- Ändere bin/gameadm: localhost:3000 → git.pp1l.de
- Ändere README.md: alle localhost:3000 → git.pp1l.de
- Verwende https:// für sichere Verbindungen
- Behebt Minecraft Server Test Pipeline-Fehler
- Alle Download-URLs jetzt korrekt konfiguriert

Ermöglicht erfolgreiche gameadm Installation in CI/CD Pipeline.
This commit is contained in:
Automation Admin 2025-08-15 00:19:03 +00:00
parent 1a67eace93
commit 7d4d71a35a
3 changed files with 5 additions and 5 deletions

View File

@ -8,13 +8,13 @@
### Eine-Zeile Installation (empfohlen)
```bash
curl -fsSL http://localhost:3000/pp1l/gameadm/raw/branch/main/install.sh | sudo bash
curl -fsSL https://git.pp1l.de/pp1l/gameadm/raw/branch/main/install.sh | sudo bash
```
### Oder mit gameadm selbst
```bash
# Lade gameadm herunter
curl -fsSL http://localhost:3000/pp1l/gameadm/raw/branch/main/bin/gameadm -o gameadm
curl -fsSL https://git.pp1l.de/pp1l/gameadm/raw/branch/main/bin/gameadm -o gameadm
chmod +x gameadm
# Installiere mit integrierter Funktion
@ -23,7 +23,7 @@ sudo ./gameadm install
### Manuelle Installation
```bash
git clone http://localhost:3000/pp1l/gameadm.git
git clone https://git.pp1l.de/pp1l/gameadm.git
cd gameadm
sudo ./install.sh
```

View File

@ -98,7 +98,7 @@ cmd_install() {
fi
# Installer-Skript herunterladen und ausführen
local installer_url="http://localhost:3000/pp1l/gameadm/raw/branch/main/install.sh"
local installer_url="https://git.pp1l.de/pp1l/gameadm/raw/branch/main/install.sh"
local temp_installer="/tmp/gameadm-installer-$$.sh"
log "INFO" "Lade Installer herunter..."

View File

@ -15,7 +15,7 @@ NC='\033[0m' # No Color
GAMEADM_DIR="/etc/gameadm"
MODULES_DIR="$GAMEADM_DIR/modules"
BIN_DIR="/usr/local/bin"
INSTALL_URL_BASE="http://localhost:3000/pp1l/gameadm/raw/branch/main"
INSTALL_URL_BASE="https://git.pp1l.de/pp1l/gameadm/raw/branch/main"
BACKUP_DIR="/tmp/gameadm-backup-$(date +%Y%m%d-%H%M%S)"
# Logging-Funktion