Commit 5bc618c6 by John Jarvis

Merge pull request #707 from edx/jarv/fix-symlinks

fix missing symlinks that were removed in a previous pr
parents 02fc035c d040dbf3
......@@ -72,7 +72,6 @@
src="{{ certs_venv_bin }}/{{ item }}"
dest={{ COMMON_BIN_DIR }}/{{ item }}.certs
state=link
notify: restart certs
with_items:
- python
- pip
......
......@@ -117,8 +117,11 @@
- name: create a symlink for venv python
file: >
src="{{ discern_venv_bin }}/python"
dest={{ COMMON_BIN_DIR }}/python.discern
src="{{ discern_venv_bin }}/{{ item }}"
dest={{ COMMON_BIN_DIR }}/{{ item }}.discern
state=link
with_items:
- python
- pip
- set_fact: discern_installed=true
......@@ -296,4 +296,14 @@
with_items: edxapp_workers
sudo_user: "{{ supervisor_service_user }}"
- name: create a symlink for venv python
file: >
src="{{ edxapp_venv_bin }}/{{ item }}"
dest={{ COMMON_BIN_DIR }}/{{ item }}.edxapp
state=link
with_items:
- python
- pip
- set_fact: edxapp_installed=true
......@@ -105,4 +105,13 @@
state=started
when: not devstack
- name: create a symlink for venv python
file: >
src="{{ ora_venv_bin }}/{{ item }}"
dest={{ COMMON_BIN_DIR }}/{{ item }}.ora
state=link
with_items:
- python
- pip
- set_fact: ora_installed=true
......@@ -74,4 +74,13 @@
- xqueue
- xqueue_consumer
- name: create a symlink for venv python
file: >
src="{{ xqueue_venv_bin }}/{{ item }}"
dest={{ COMMON_BIN_DIR }}/{{ item }}.xqueue
state=link
with_items:
- python
- pip
- set_fact: xqueue_installed=true
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