From 425469cd5a02f5ea478d8e3747c3c79ecd39b17a Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Wed, 3 Jul 2013 17:14:00 -0400 Subject: [PATCH] Don't check host keys within AWX to faciliate easy re-provisioning by default. --- awx/main/tasks.py | 1 + 1 file changed, 1 insertion(+) diff --git a/awx/main/tasks.py b/awx/main/tasks.py index 5804c9bb0b..5201d9ef6d 100644 --- a/awx/main/tasks.py +++ b/awx/main/tasks.py @@ -90,6 +90,7 @@ class RunJob(Task): env['REST_API_URL'] = settings.INTERNAL_API_URL env['REST_API_TOKEN'] = job.task_auth_token or '' env['ANSIBLE_NOCOLOR'] = '1' # Prevent output of escape sequences. + env['ANSIBLE_HOST_KEY_CHECKING'] = 'False' return env def build_args(self, job, **kwargs):