Celery needs to have HOME set

This commit is contained in:
Michael DeHaan 2013-07-11 12:02:09 -04:00
parent 552389f903
commit 56a5f66e75

View File

@ -94,6 +94,7 @@ class RunJob(Task):
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['HOME'] = '/var/lib/awx'
return env
def build_args(self, job, **kwargs):