Fix virtualenv-tools issue

please see https://github.com/fireteam/virtualenv-tools/issues/5

This make installation of the virtualenv impossible on CentOS7 since
you endup with python > python2.7 and python2.7 > python

lrwxrwxrwx. 1 root root       9 Nov 24 20:49 python -> python2.7
lrwxrwxrwx. 1 root root       6 Nov 14 20:03 python2 -> python
lrwxrwxrwx. 1 root root       6 Nov 14 20:03 python2.7 -> python

Change-Id: Id7a1d25732de7d6c9001a5ef3bcce7ae02da5350
Related-Bug: #1637509
Partial-Bug: #1644629
This commit is contained in:
Marc Gariepy
2016-11-28 08:50:01 -05:00
parent cfe514a952
commit 84f2af8132

View File

@@ -89,6 +89,15 @@
when: aodh_developer_mode | bool
notify: Restart aodh services
- name: CentOS remove python from path first
file:
path: "{{ aodh_bin | dirname }}/bin/python2.7"
state: "absent"
when:
- ansible_pkg_mgr == 'yum'
- not aodh_developer_mode | bool
- aodh_get_venv | changed or aodh_venv_dir | changed
- name: Update virtualenv path
command: >
virtualenv-tools --update-path=auto --reinitialize {{ aodh_bin | dirname }}