ptest runs are non-interactive, therefore ignore adding to known_hosts on localhost
Signed-off-by: Khem Raj <[email protected]> --- .../sshfs-fuse/sshfs-fuse/run-ptest | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/meta-filesystems/recipes-filesystems/sshfs-fuse/sshfs-fuse/run-ptest b/meta-filesystems/recipes-filesystems/sshfs-fuse/sshfs-fuse/run-ptest index 8d2017d39c..5aab54d5b5 100644 --- a/meta-filesystems/recipes-filesystems/sshfs-fuse/sshfs-fuse/run-ptest +++ b/meta-filesystems/recipes-filesystems/sshfs-fuse/sshfs-fuse/run-ptest @@ -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
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#112676): https://lists.openembedded.org/g/openembedded-devel/message/112676 Mute This Topic: https://lists.openembedded.org/mt/108837905/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
