23 lines
668 B
Bash
23 lines
668 B
Bash
#!/bin/bash
|
|
################################################################################
|
|
# encoderPro One-Liner Installer for Dell R730
|
|
# Usage: curl -fsSL https://your-git/encoderpro/raw/main/install-r730.sh | bash
|
|
################################################################################
|
|
|
|
# Configuration
|
|
REGISTRY="${ENCODERPRO_REGISTRY:-your-registry.com}"
|
|
GIT_REPO="${ENCODERPRO_GIT:-https://your-private-git/encoderpro.git}"
|
|
|
|
echo "Installing encoderPro for Dell R730..."
|
|
|
|
# Clone repository
|
|
cd /mnt/user/appdata
|
|
git clone "$GIT_REPO" encoderpro
|
|
cd encoderpro
|
|
|
|
# Make deploy script executable
|
|
chmod +x deploy-r730.sh
|
|
|
|
# Run deployment
|
|
./deploy-r730.sh
|