Commit 0969bc6e by Jason Bau

Merge pull request #614 from edx/jbau/edxapp/codejail

bugfix: merge 2 when: clauses
parents abb347a8 2ac40b0f
......@@ -190,9 +190,8 @@
- "{{ sandbox_base_requirements }}"
- "{{ sandbox_local_requirements }}"
- "{{ sandbox_post_requirements }}"
when: not EDXAPP_PYTHON_SANDBOX
sudo_user: "{{ edxapp_user }}"
when: not inst.stat.exists or new.stat.md5 != inst.stat.md5
when: "not EDXAPP_PYTHON_SANDBOX and (not inst.stat.exists or new.stat.md5 != inst.stat.md5)"
notify:
- "edxapp | restart edxapp"
- "edxapp | restart edxapp_workers"
......
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