initial comment
This commit is contained in:
22
install-r730.sh
Normal file
22
install-r730.sh
Normal file
@@ -0,0 +1,22 @@
|
||||
#!/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
|
||||
Reference in New Issue
Block a user