1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-18 12:06:08 +00:00

target/descriptor: Make strict_host_check default to False

The majority of users will not find a benefit of the additional
check so make this parameter default to `False` instead.
This commit is contained in:
Marc Bonnici 2020-03-12 11:12:21 +00:00 committed by setrofim
parent 2da9370920
commit 06ba8409c1

View File

@ -333,7 +333,7 @@ CONNECTION_PARAMS = {
The port SSH server is listening on on the target.
"""),
Parameter(
'strict_host_check', kind=bool, default=True,
'strict_host_check', kind=bool, default=False,
description="""
Specify whether devices should be connected to if
their host key does not match the systems known host keys. """),