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 @@ ...@@ -72,7 +72,6 @@
src="{{ certs_venv_bin }}/{{ item }}" src="{{ certs_venv_bin }}/{{ item }}"
dest={{ COMMON_BIN_DIR }}/{{ item }}.certs dest={{ COMMON_BIN_DIR }}/{{ item }}.certs
state=link state=link
notify: restart certs
with_items: with_items:
- python - python
- pip - pip
......
...@@ -117,8 +117,11 @@ ...@@ -117,8 +117,11 @@
- name: create a symlink for venv python - name: create a symlink for venv python
file: > file: >
src="{{ discern_venv_bin }}/python" src="{{ discern_venv_bin }}/{{ item }}"
dest={{ COMMON_BIN_DIR }}/python.discern dest={{ COMMON_BIN_DIR }}/{{ item }}.discern
state=link state=link
with_items:
- python
- pip
- set_fact: discern_installed=true - set_fact: discern_installed=true
...@@ -296,4 +296,14 @@ ...@@ -296,4 +296,14 @@
with_items: edxapp_workers with_items: edxapp_workers
sudo_user: "{{ supervisor_service_user }}" 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 - set_fact: edxapp_installed=true
...@@ -105,4 +105,13 @@ ...@@ -105,4 +105,13 @@
state=started state=started
when: not devstack 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 - set_fact: ora_installed=true
...@@ -74,4 +74,13 @@ ...@@ -74,4 +74,13 @@
- xqueue - xqueue
- xqueue_consumer - 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 - 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