Fix: Correct repository URLs to pp1l/gameadm

- Update all URLs from PurePowerPh1l/gameadm-repo to pp1l/gameadm
- Fix installer download paths
- Update README documentation links
- Ensure all references point to correct Gitea organization
This commit is contained in:
Automation Admin 2025-08-14 21:54:09 +00:00
parent 11b4f93bf1
commit 14250579c7
3 changed files with 6 additions and 6 deletions

View File

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

View File

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

View File

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