From 259083c0e2149148d363bfa5e5a26ffb1bfaaf64 Mon Sep 17 00:00:00 2001 From: Chris Church Date: Mon, 8 Jul 2013 22:06:21 -0400 Subject: [PATCH] Fix for jobs failing to run. --- awx/main/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/tasks.py b/awx/main/tasks.py index 4def33ee32..6c72fdaf40 100644 --- a/awx/main/tasks.py +++ b/awx/main/tasks.py @@ -93,7 +93,7 @@ class RunJob(Task): # do not want AWX to ask interactive questions and want it to be friendly with reprovisioning env['ANSIBLE_HOST_KEY_CHECKING'] = 'False' # RHEL has too old of an SSH so ansible will select paramiko and this is VERY slow - env['ANSIBLE_PARAMIKO_RECORD_HOST_KEYS'] = False + env['ANSIBLE_PARAMIKO_RECORD_HOST_KEYS'] = 'False' return env def build_args(self, job, **kwargs):