Commit f10571cb by Feanil Patel

Merge pull request #2050 from edx/feanil/fix_stage_certs

Install requirements after we checkout the code.
parents abc29f3b 452a84ea
...@@ -21,6 +21,11 @@ ...@@ -21,6 +21,11 @@
accept_hostkey=yes accept_hostkey=yes
environment: environment:
GIT_SSH: "{{ git_ssh_script }}" GIT_SSH: "{{ git_ssh_script }}"
- name: install requirements
pip:
requirements: "{{ repo_path }}/requirements.txt"
virtualenv: "/opt/edx"
state: present
# Need to do this because the www-data user is not properly setup # Need to do this because the www-data user is not properly setup
# and can't run ssh. # and can't run ssh.
- name: change owner to www-data - name: change owner to www-data
......
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