Don't check host keys within AWX to faciliate easy re-provisioning by default.

This commit is contained in:
Michael DeHaan 2013-07-03 17:14:00 -04:00
parent 69abbb147d
commit 425469cd5a

View File

@ -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):