Something appears to have caused the xenial guests to install all python libraries into python 3.5 directories and therefore the guest won't launch. This change forces pip2 and in theory should get around that. Moved Redis and PostgreSQL installs after the trove-dep ones. Change-Id: I3bbe3bafa7ea3e627272103ac16a38f6a32a8a06 Partial-Bug: #1650382
10 lines
198 B
Bash
Executable File
10 lines
198 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# CONTEXT: GUEST during CONSTRUCTION as ROOT
|
|
# PURPOSE: Install trove guest python dependencies - see trovestack functions_qemu
|
|
|
|
set -e
|
|
set -o xtrace
|
|
|
|
pip2 install pymongo>=3.0.2,!=3.1
|