Skip to content

Commit

Permalink
bootstrap: fixes for recent teuthologies on recent openSUSEs
Browse files Browse the repository at this point in the history
Signed-off-by: Nathan Cutler <[email protected]>
  • Loading branch information
smithfarm committed Feb 19, 2019
1 parent a70ac0c commit b6e8c80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ Linux)
fi
;;
"openSUSE project"|"SUSE LINUX"|"openSUSE")
for package in python-pip python-devel python-virtualenv libev-devel libmysqlclient-devel libffi-devel; do
for package in gcc libmysqld-devel zlib-devel python-pip python-devel python-virtualenv libev-devel libmysqlclient-devel libffi-devel; do
if [ "$(rpm -q $package)" == "package $package is not installed" ]; then
if [ "$(rpm -q --whatprovides $package)" == "no package provides $package" ]; then
missing="${missing:+$missing }$package"
Expand Down Expand Up @@ -127,7 +127,7 @@ if [ -z "$NO_CLOBBER" ] || [ ! -e ./virtualenv ]; then
if ! which virtualenv > /dev/null; then
pip install virtualenv
fi
virtualenv --setuptools virtualenv
virtualenv --python=python2.7 --setuptools virtualenv
fi

# Upgrade pip first
Expand Down

0 comments on commit b6e8c80

Please sign in to comment.