Commit 65f6851e by Renzo Lucioni

Prevent programs tasks from attempting asset compression

There are no longer any templates in programs, let alone any with 'compress' tags in them.
parent 641a12da
......@@ -46,16 +46,12 @@
environment: "{{ programs_environment }}"
when: migrate_db is defined and migrate_db|lower == "yes"
- name: run collectstatic
shell: >
chdir={{ programs_code_dir }}
{{ programs_venv_dir }}/bin/python manage.py {{ item }}
{{ programs_venv_dir }}/bin/python manage.py collectstatic --noinput
become_user: "{{ programs_user }}"
environment: "{{ programs_environment }}"
with_items:
- "collectstatic --noinput"
- "compress"
when: not devstack
# NOTE this isn't used or needed when s3 is used for PROGRAMS_MEDIA_STORAGE_BACKEND
......
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