Skip to content
Snippets Groups Projects

5534 add docker

Merged Hahn Axel (hahn) requested to merge 5534-add-docker into master
1 file
+ 5
2
Compare changes
  • Side-by-side
  • Inline
+ 5
2
@@ -6,9 +6,12 @@
# gitwrapperssh.sh [keyfile] [command]
#
# sshparams=
sshparams="-o StrictHostKeyChecking=no"
if [ -z "$PKEY" ]; then
# if PKEY is not specified, run ssh using default keyfile
ssh "$@"
ssh "${sshparams}" "$@"
else
ssh -i ${PKEY} "$@"
ssh "${sshparams}" -i ${PKEY} "$@"
fi
\ No newline at end of file
Loading