From 2f0615d8c179854bbc33b7d66bf07cbd69a7581b Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Thu, 21 Nov 2013 17:36:23 -0500 Subject: [PATCH] JOBOUTPUT_ROOT is still needed in defaults --- awx/settings/defaults.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/awx/settings/defaults.py b/awx/settings/defaults.py index bba562d01c..5d97cfc564 100644 --- a/awx/settings/defaults.py +++ b/awx/settings/defaults.py @@ -83,6 +83,10 @@ MEDIA_URL = '/media/' # This directory should not be web-accessible. PROJECTS_ROOT = os.path.join(BASE_DIR, 'projects') +# Absolute filesystem path to the directory to host job stdout +# This directory should not be web-accessible. +JOBOUTPUT_ROOT = os.path.join(BASE_DIR, 'job_output') + SITE_ID = 1 # Make this unique, and don't share it with anybody.