Initial commit

This commit is contained in:
monoadmin
2026-04-10 15:36:36 -07:00
commit 918ff903f0
16 changed files with 929 additions and 0 deletions

9
deploy.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
# Run the install script on the OpenWrt device.
# Usage: ./deploy.sh [user@host]
set -e
HOST="${1:-root@20.0.0.26}"
echo "==> Deploying to $HOST"
scp -O openwrt/install.sh "$HOST":/tmp/ups-install.sh
ssh "$HOST" "chmod +x /tmp/ups-install.sh && /tmp/ups-install.sh"