Files
ClawSkills/git-hangman-lab/scripts/gitea
zhi 840707b604 refactor: replace vps.* hostnames with server.t* across all scripts
Migrated all SSH host references from vps.git to server.t0 to use
the new unified HangmanLab server naming convention.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-18 02:25:41 +00:00

10 lines
233 B
Bash
Executable File

#!/bin/bash
set -euo pipefail
REMOTE_HOST="server.t0"
REMOTE_USER="root"
CONTAINER_NAME="git-kc-gitea"
ssh "$REMOTE_USER@$REMOTE_HOST" \
"docker exec -i $CONTAINER_NAME gitea --config /etc/gitea/app.ini $(printf '%q ' "$@")" <&0