From 1e3090a5c85d448560ad2560974f93fbe7897cc7 Mon Sep 17 00:00:00 2001 From: Logan V Date: Tue, 15 Nov 2016 22:15:23 -0600 Subject: [PATCH] Reinitialize venv upon install Reinitializes (copies python, etc binaries) into the venv when dropping a new venv into place. This is needed because the Python binary packaged with the venv may not match the Python running on the host it is being installed to. (ie. in the case of a Xenial repo container and a Trusty target host.) Change-Id: I2cb0114dccd964ba917e88a2951e52a0bd6c6688 Partial-Bug: #1637509 --- tasks/nova_install.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/nova_install.yml b/tasks/nova_install.yml index 564fdf57..60bce0e2 100644 --- a/tasks/nova_install.yml +++ b/tasks/nova_install.yml @@ -110,7 +110,7 @@ - name: Update virtualenv path command: > - virtualenv-tools --update-path=auto {{ nova_bin | dirname }} + virtualenv-tools --update-path=auto --reinitialize {{ nova_bin | dirname }} when: - not nova_developer_mode | bool - nova_get_venv | changed or nova_venv_dir | changed