Unverified Commit 2af7e659 by Kevin Falcone Committed by GitHub

Merge pull request #4657 from edx/jibsheet/override-DATA_DIR

We can override the DATA_DIR now that edx-platform exposes it
parents a7049422 b038bbde
...@@ -935,9 +935,6 @@ edxapp_devstack_logs: ...@@ -935,9 +935,6 @@ edxapp_devstack_logs:
# Only install packages which are appropriate for this environment # Only install packages which are appropriate for this environment
edxapp_npm_production: "yes" edxapp_npm_production: "yes"
# TODO: This can be removed once VPC-122 is resolved
edxapp_legacy_course_data_dir: "{{ edxapp_app_dir }}/data"
edxapp_workers: "{{ EDXAPP_CELERY_WORKERS }}" edxapp_workers: "{{ EDXAPP_CELERY_WORKERS }}"
EDXAPP_WORKER_DEFAULT_STOPWAITSECS: 432000 EDXAPP_WORKER_DEFAULT_STOPWAITSECS: 432000
...@@ -1164,6 +1161,7 @@ generic_env_config: &edxapp_generic_env ...@@ -1164,6 +1161,7 @@ generic_env_config: &edxapp_generic_env
WIKI_ENABLED: true WIKI_ENABLED: true
SYSLOG_SERVER: "{{ EDXAPP_SYSLOG_SERVER }}" SYSLOG_SERVER: "{{ EDXAPP_SYSLOG_SERVER }}"
LOG_DIR: "{{ edxapp_log_dir }}" LOG_DIR: "{{ edxapp_log_dir }}"
DATA_DIR: "{{ edxapp_data_dir }}"
JWT_ISSUER: "{{ EDXAPP_LMS_ISSUER }}" JWT_ISSUER: "{{ EDXAPP_LMS_ISSUER }}"
DEFAULT_JWT_ISSUER: DEFAULT_JWT_ISSUER:
ISSUER: "{{ EDXAPP_LMS_ISSUER }}" ISSUER: "{{ EDXAPP_LMS_ISSUER }}"
......
...@@ -48,21 +48,6 @@ ...@@ -48,21 +48,6 @@
- devstack - devstack
- devstack:install - devstack:install
# This is a symlink that has to exist because
# we currently can't override the DATA_DIR var
# in edx-platform. TODO: This can be removed once
# VPC-122 is closed
- name: make the course data dir
file:
src: "{{ edxapp_course_data_dir }}"
dest: "{{ edxapp_legacy_course_data_dir }}"
state: link
owner: "{{ edxapp_user }}"
group: "{{ common_web_group }}"
tags:
- install
- install:base
- name: create edxapp log dir - name: create edxapp log dir
file: file:
path: "{{ edxapp_log_dir }}" path: "{{ edxapp_log_dir }}"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment