diff options
author | John MacFarlane <jgm@berkeley.edu> | 2021-03-18 10:22:49 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2021-03-18 10:22:49 -0700 |
commit | 0012750c421b74313ad950f95730d6ee21c08408 (patch) | |
tree | ee5d0728b3299ec329d1cb2312e99c788da94e8d /tools | |
parent | 89a89a8cf33e1558e8a477f98a2c73bc224ccf60 (diff) | |
download | pandoc-0012750c421b74313ad950f95730d6ee21c08408.tar.gz |
build-arm.sh : remove strict checking on first ssh access
Diffstat (limited to 'tools')
-rw-r--r-- | tools/build-arm.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/build-arm.sh b/tools/build-arm.sh index dc13e1435..0a14c7302 100644 --- a/tools/build-arm.sh +++ b/tools/build-arm.sh @@ -49,6 +49,8 @@ done # At this point you can connect via SSH, or run this script: # $ ssh -i ~/.ssh/debian-arm-us-east-2.pem admin@$IPADDR +ssh -o "StrictHostKeyChecking=no" -i "~/.ssh/$KEY_NAME.pem" admin@$IPADDR uname -a + SSH="ssh -i ~/.ssh/$KEY_NAME.pem admin@$IPADDR" echo "Provisioning..." |