e904278e50
During the Berlin summit, 2018 November, we used an updated version of the training VM, with always-latest devstack running on Ubuntu 18.04 LTS. This patch fixes issues coming with installing devstack on the new operating system, and also introduces some bug fixes. For a full list of changes, refer to CHANGELOG.md Change-Id: I822f68d5aba5721d6eb7dd9066e10dff81bcd736
11 lines
233 B
Bash
Executable File
11 lines
233 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
sudo yum install -y epel-release
|
|
sudo yum install -y debootstrap dpkg gnupg kpartx perl python-virtualenv qemu-img
|
|
sudo yum install -y vim
|
|
|
|
virtualenv .env
|
|
source .env/bin/activate
|
|
pip install diskimage-builder
|
|
|