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: I2f36bcf543647944b51dbf854d776dab98fee69c Related-Bug: #1637509 Partial-Bug: #1644629
This commit is contained in:
parent
e61ecae7ed
commit
2c875dc440
@ -108,6 +108,15 @@
|
||||
- nova-install
|
||||
- nova-pip-packages
|
||||
|
||||
- name: CentOS remove python from path first
|
||||
file:
|
||||
path: "{{ nova_bin | dirname }}/bin/python2.7"
|
||||
state: "absent"
|
||||
when:
|
||||
- ansible_pkg_mgr == 'yum'
|
||||
- not nova_developer_mode | bool
|
||||
- nova_get_venv | changed or nova_venv_dir | changed
|
||||
|
||||
- name: Update virtualenv path
|
||||
command: >
|
||||
virtualenv-tools --update-path=auto --reinitialize {{ nova_bin | dirname }}
|
||||
|
Loading…
x
Reference in New Issue
Block a user