aboutsummaryrefslogtreecommitdiffstats
path: root/ssh
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2017-05-28 13:01:23 +0200
committerRomain Forlot <romain.forlot@iot.bzh>2017-05-28 13:01:23 +0200
commit0c4659c67fa3758298421d268534416f32b8372c (patch)
tree9877bfb5a6cc251f27ec4cdbbeaf5d5989da4e92 /ssh
parentde8b71d64d660db06cd7ac60bc8ad7d28cbc6ada (diff)
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 <romain.forlot@iot.bzh>
Diffstat (limited to 'ssh')
-rw-r--r--ssh/start-on-target.in2
1 files changed, 1 insertions, 1 deletions
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=\$!