mirror of
https://git.cloudron.io/cloudron/gitea-app.git
synced 2024-11-10 18:21:03 +00:00
5 lines
197 B
Bash
Executable file
5 lines
197 B
Bash
Executable file
#!/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 "$@"
|