From 8dae35f454799f17354f784ba31b45797418b22a Mon Sep 17 00:00:00 2001
From: an7s <an7s@localhost>
Date: Tue, 26 Jul 2016 15:16:09 +0000
Subject: [PATCH] No strict ssh checks

---
 clear_ida_cache.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/clear_ida_cache.sh b/clear_ida_cache.sh
index 6c3e2ce..ad47c89 100755
--- a/clear_ida_cache.sh
+++ b/clear_ida_cache.sh
@@ -2,10 +2,10 @@
 
 if [ ! -z "$IDA_PRO_SERVER_HOST" ]; then
 	echo "Clear IDA cache on $IDA_PRO_SERVER_HOST"
-	ssh -o ConnectTimeout=10 -o BatchMode=yes $IDA_PRO_SERVER_HOST rm -fr /tmp/remote-analyze/*
+	ssh -o ConnectTimeout=10 -o BatchMode=yes -o StrictHostKeyChecking=no $IDA_PRO_SERVER_HOST rm -fr /tmp/remote-analyze/*
 fi
 
 if [ ! -z "$IDA_PRO_SERVER_HOST2" ]; then
 	echo "Clear IDA cache on $IDA_PRO_SERVER_HOST2"
-	ssh -o ConnectTimeout=10 -o BatchMode=yes $IDA_PRO_SERVER_HOST2 rm -fr /tmp/remote-analyze/*
+	ssh -o ConnectTimeout=10 -o BatchMode=yes -o StrictHostKeyChecking=no $IDA_PRO_SERVER_HOST2 rm -fr /tmp/remote-analyze/*
 fi
-- 
GitLab