12 lines
556 B
Bash
12 lines
556 B
Bash
printf '%s\n' __HWLAB_PROXY_SUMMARY_SHELL__ >&2
|
|
cat > /tmp/hwlab-git-ssh-proxy.sh <<'SH_PROXY'
|
|
#!/bin/sh
|
|
exec ssh -i /root/.ssh/id_rsa -o IdentitiesOnly=yes -o BatchMode=yes -o StrictHostKeyChecking=accept-new -o UserKnownHostsFile=/root/.ssh/known_hosts -o ConnectTimeout=15 -o ServerAliveInterval=5 -o ServerAliveCountMax=1 "$@"
|
|
SH_PROXY
|
|
chmod 0700 /tmp/hwlab-git-ssh-proxy.sh
|
|
unset HTTP_PROXY HTTPS_PROXY ALL_PROXY http_proxy https_proxy all_proxy
|
|
export NO_PROXY='*'
|
|
export no_proxy='*'
|
|
export GIT_SSH=/tmp/hwlab-git-ssh-proxy.sh
|
|
unset GIT_SSH_COMMAND
|