ea57869d3e
Python package dependency conflicts have been observed to occur for certain combinations of services at certain revision. Running all services in virtualenvs removes the issue. Change-Id: I100817569b43a5af3427b0ae20cebdc7d55d03a5
14 lines
470 B
Bash
Executable File
14 lines
470 B
Bash
Executable File
#!/bin/bash
|
|
set -eux
|
|
|
|
install-packages python-pip
|
|
|
|
pip install -U distribute # required by virtualenv
|
|
pip install virtualenv
|
|
|
|
install -m 0755 -o root -g root $(dirname $0)/../bin/os-svc-install /usr/local/bin/os-svc-install
|
|
install -m 0755 -o root -g root $(dirname $0)/../bin/os-svc-daemon /usr/local/bin/os-svc-daemon
|
|
install -m 0755 -o root -g root $(dirname $0)/../bin/os-db-create /usr/local/bin/os-db-create
|
|
|
|
install -m 0755 -o root -g root -d /opt/stack/venvs
|