diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-28 13:01:23 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-28 13:01:23 +0200 |
commit | 0c4659c67fa3758298421d268534416f32b8372c (patch) | |
tree | 9877bfb5a6cc251f27ec4cdbbeaf5d5989da4e92 | |
parent | de8b71d64d660db06cd7ac60bc8ad7d28cbc6ada (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>
-rw-r--r-- | ssh/start-on-target.in | 2 |
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=\$! |