From 0c4659c67fa3758298421d268534416f32b8372c Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Sun, 28 May 2017 13:01:23 +0200 Subject: Fix: first ssh connection Don't ask to valid host key at first connection to a host Change-Id: I664d15e2a913638ffccb85c4d420a0df8b9addc5 Signed-off-by: Romain Forlot --- ssh/start-on-target.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ssh') diff --git a/ssh/start-on-target.in b/ssh/start-on-target.in index 309a059..b0623cf 100644 --- a/ssh/start-on-target.in +++ b/ssh/start-on-target.in @@ -13,7 +13,7 @@ export RSYNC_PREFIX=@RSYNC_PREFIX@/@PROJECT_NAME@ export AFB_REMPORT=@AFB_REMPORT@ export AFB_TOKEN=@AFB_TOKEN@ -exec ssh -tt $RSYNC_TARGET << EOF +exec ssh -o "StrictHostKeyChecking no" -tt $RSYNC_TARGET << EOF afb-daemon --workdir=$RSYNC_PREFIX --port=$AFB_REMPORT --roothttp=./htdocs --ldpath=./lib --verbose --token=$AFB_TOKEN & PID_DAEMON=\$! -- cgit 1.2.3-korg