mirror of
https://git.cloudron.io/cloudron/gitea-app.git
synced 2024-11-04 15:39:34 +00:00
6 lines
197 B
Bash
6 lines
197 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
readonly SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||
|
|
||
|
ssh -o IdentitiesOnly=yes -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i ${SCRIPT_DIR}/id_rsa "$@"
|