This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a commit to branch inserted_src in repository toolchain/semiautobench.
The following commit(s) were added to refs/heads/inserted_src by this push: new 7217a54 Specify key to use for localhost connection 7217a54 is described below
commit 7217a54988a73b1187b3eb114a0a5d4d4423b812 Author: Bernard Ogden bernie.ogden@linaro.org Date: Mon Jul 13 12:10:26 2015 +0200
Specify key to use for localhost connection
Change-Id: I861ee47de7c6186e995bef202ab2c2cdf65c965c --- invoke_session_debian | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/invoke_session_debian b/invoke_session_debian index 2c1bab5..fdca6be 100755 --- a/invoke_session_debian +++ b/invoke_session_debian @@ -60,7 +60,7 @@ export LAVA_SSH_KEYFILE=${HOME}/data/onetime #Need to be able to ssh to self to get local sources #Can reuse the onetime key for this cat ~/data/onetime.pub >> ~/.ssh/authorized_keys -if ! ssh -o StrictHostKeyChecking=no localhost true; then +if ! ssh -i ~/data/onetime -o StrictHostKeyChecking=no localhost true; then echo "Failed to ssh to self" >&2 exit 1 fi