summaryrefslogtreecommitdiff
path: root/lorry-ssh-wrapper
blob: c4e2c1da4683431770db7687c01b31fea950aa05 (plain)
1
2
3
4
5
#!/bin/sh
# Run ssh without strict host key checking.

set -eu
exec ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null "$@"