mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-12-15 23:05:34 +01:00
sshfs-fuse: Do not prompt for known_hosts during ptests
ptest runs are non-interactive, therefore ignore adding to known_hosts on localhost Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
parent
44fb41b449
commit
e6b228a6b2
|
|
@ -1,3 +1,11 @@
|
|||
#!/bin/sh
|
||||
|
||||
mkdir -p ~/.ssh
|
||||
cat > ~/.ssh/config << EOF
|
||||
Host *
|
||||
CheckHostIP no
|
||||
StrictHostKeyChecking no
|
||||
UserKnownHostsFile=/dev/null
|
||||
EOF
|
||||
pytest --automake
|
||||
|
||||
rm -rf ~/.ssh/config
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user