Add a new common-venv element

If used will set two environment variables to allow a common
virtual environment to be used with --system-site-packages
enabled so that Nova can pull in python-libvirt.

Change-Id: I8151e2fb9aff322dbe2ffc5982f341120dba6c6c
This commit is contained in:
Dan Prince 2014-02-27 15:57:44 -05:00
parent 02194c8ffb
commit e2eccc4a26
2 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1 @@
Install everything in a common virtualenv.

View File

@ -0,0 +1,6 @@
export OPENSTACK_VENV_DIR="/opt/stack/venvs/openstack"
# Install Nova in its own venv since it uses
# --system-site-packages and it is probably best
# to keep that isolated for now
export NOVA_VENV_DIR="/opt/stack/venvs/nova"