diff options
author | Matthew Jones <mat@matburt.net> | 2013-11-21 19:53:59 +0100 |
---|---|---|
committer | Matthew Jones <mat@matburt.net> | 2013-11-21 19:53:59 +0100 |
commit | bf07c55273acc800236fd2343e18e538271b7519 (patch) | |
tree | a094caddc5ac16b44c61b07ed9a50009a8e72294 /config | |
parent | Fix issue AC-708, rework the 'group' structure to report the correct fail counts (diff) | |
download | awx-bf07c55273acc800236fd2343e18e538271b7519.tar.xz awx-bf07c55273acc800236fd2343e18e538271b7519.zip |
Initial task status to file implementation
Diffstat (limited to 'config')
-rw-r--r-- | config/deb/settings.py | 2 | ||||
-rw-r--r-- | config/rpm/settings.py | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/config/deb/settings.py b/config/deb/settings.py index 69188dcb3a..8ef3fd503e 100644 --- a/config/deb/settings.py +++ b/config/deb/settings.py @@ -34,6 +34,8 @@ STATIC_ROOT = '/var/lib/awx/public/static' PROJECTS_ROOT = '/var/lib/awx/projects' +JOBOUTPUT_ROOT = '/var/lib/awx/job_status' + SECRET_KEY = file('/etc/awx/SECRET_KEY', 'rb').read().strip() ALLOWED_HOSTS = ['*'] diff --git a/config/rpm/settings.py b/config/rpm/settings.py index 69188dcb3a..8ef3fd503e 100644 --- a/config/rpm/settings.py +++ b/config/rpm/settings.py @@ -34,6 +34,8 @@ STATIC_ROOT = '/var/lib/awx/public/static' PROJECTS_ROOT = '/var/lib/awx/projects' +JOBOUTPUT_ROOT = '/var/lib/awx/job_status' + SECRET_KEY = file('/etc/awx/SECRET_KEY', 'rb').read().strip() ALLOWED_HOSTS = ['*'] |