Skip to content
Snippets Groups Projects
Commit 8dae35f4 authored by an7s's avatar an7s
Browse files

No strict ssh checks

parent 9383dbdf
No related branches found
No related tags found
No related merge requests found
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment