Add bubblewrap to bindep / test-setup.sh

Bubblewrap is a setuid wrapper for unprivileged chroot and namespace
manipulation. We'll be using this to run ansible-playbook from.

Change-Id: I7c6414281724d066812094d02a726df357978076
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2017-05-02 12:47:49 -04:00 committed by Clint Byrum
parent f60bbcd8a5
commit 2989672aad
2 changed files with 7 additions and 0 deletions

View File

@ -14,3 +14,4 @@ libffi-dev [platform:dpkg]
libffi-devel [platform:rpm]
python-dev [platform:dpkg]
python-devel [platform:rpm]
bubblewrap [platform:rpm]

View File

@ -35,3 +35,9 @@ mysql -u $DB_USER -p$DB_PW -h 127.0.0.1 -e "
SET default_storage_engine=MYISAM;
DROP DATABASE IF EXISTS openstack_citest;
CREATE DATABASE openstack_citest CHARACTER SET utf8;"
# TODO(pabelanger): Move this into bindep after we figure out how to enable our
# PPA.
sudo add-apt-repository ppa:openstack-ci-core/bubblewrap
sudo apt-get update
sudo apt-get --assume-yes install bubblewrap