auto-commit for b082c1c8-f6e3-4cfd-82ee-0396c70d1a00

This commit is contained in:
emergent-agent-e1
2026-07-23 22:18:08 +00:00
parent 34a052dabf
commit 22d8479b39
16 changed files with 1364 additions and 94 deletions
+2 -2
View File
@@ -19,7 +19,7 @@
set -euo pipefail
# ---------- Defaults (override via env) ----------
KINO_REPO="${KINO_REPO:-https://github.com/CHANGE_ME/kino-media-server.git}"
KINO_REPO="${KINO_REPO:-https://github.com/myronblair/kino-app.git}"
KINO_BRANCH="${KINO_BRANCH:-main}"
KINO_DIR="${KINO_DIR:-/opt/kino}"
KINO_HTTP_PORT="${KINO_HTTP_PORT:-8080}"
@@ -44,7 +44,7 @@ die() { printf "%s %s\n" "$(c_red '✗')" "$*" >&2; exit 1; }
[ "$(id -u)" -eq 0 ] || die "Run as root (or via sudo). Try: curl -fsSL ... | sudo bash"
if [ "$KINO_REPO" = "https://github.com/CHANGE_ME/kino-media-server.git" ]; then
die "KINO_REPO placeholder — edit install.sh and set your GitHub URL, or pass KINO_REPO=... env var."
die "KINO_REPO placeholder — pass KINO_REPO=... env var to install.sh"
fi
# ---------- OS detection & package manager ----------