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>
10 lines
233 B
Bash
Executable File
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
|