[oe-commits] Ross Burton : qemuimage-testlib: silence some key warnings

git at git.openembedded.org git at git.openembedded.org
Tue Apr 23 12:00:34 UTC 2013


Module: openembedded-core.git
Branch: danny
Commit: b4fe96393912377cd003af8c72557df3448cde86
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=b4fe96393912377cd003af8c72557df3448cde86

Author: Ross Burton <ross.burton at intel.com>
Date:   Fri Apr  5 16:35:29 2013 +0100

qemuimage-testlib: silence some key warnings

Set StrictHostKeyChecking to no to silence the fingerprint warnings, and instead
of creating a temporary file for the known hosts and then deleting it just use
/dev/null.

Signed-off-by: Ross Burton <ross.burton at intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 scripts/qemuimage-testlib |    8 ++------
 1 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/scripts/qemuimage-testlib b/scripts/qemuimage-testlib
index 22e2d41..daa1ac0 100755
--- a/scripts/qemuimage-testlib
+++ b/scripts/qemuimage-testlib
@@ -84,13 +84,12 @@ Test_SCP()
 	local ip_addr=$1
 	local src=$2
 	local des=$3
-	local tmpfile=`mktemp`
 	local time_out=60
 	local ret=0
 
 	# We use expect to interactive with target by ssh
 	local exp_cmd=`cat << EOF
-eval spawn scp -o UserKnownHostsFile=$tmpfile "$src" root@$ip_addr:"$des"
+eval spawn scp -o UserKnownHostsFile=/dev/null  -o StrictHostKeyChecking=no "$src" root@$ip_addr:"$des"
 set timeout $time_out
 expect {
     "*assword:" { send "\r"; exp_continue}
@@ -107,7 +106,6 @@ EOF`
 
 	expect -c "$exp_cmd"
 	ret=$?
-	rm -rf $tmpfile
 	return $ret
 }
 
@@ -117,11 +115,10 @@ Test_SSH()
 	local ip_addr=$1
 	shift
 	local command=$@
-	local tmpfile=`mktemp`
 	local time_out=60
 	local ret=0
 	local exp_cmd=`cat << EOF
-eval spawn ssh -o UserKnownHostsFile=$tmpfile root@$ip_addr "$command"
+eval spawn ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no root@$ip_addr "$command"
 set timeout $time_out
 expect {
     "*assword:" { send "\r"; exp_continue}
@@ -138,7 +135,6 @@ EOF`
 
 	expect -c "$exp_cmd"
 	ret=$?
-	rm -rf $tmpfile
 	return $ret
 }
 





More information about the Openembedded-commits mailing list