diff --git a/magnum/elements/fedora-atomic/install_imagebuild_deps.sh b/magnum/elements/fedora-atomic/install_imagebuild_deps.sh new file mode 100755 index 0000000000..3466ca0a1f --- /dev/null +++ b/magnum/elements/fedora-atomic/install_imagebuild_deps.sh @@ -0,0 +1,21 @@ +#!/bin/bash + +# This script installs all needed dependencies to generate +# images using diskimage-builder. Please not it only has been +# tested on Ubuntu Trusty + +set -eux +set -o pipefail + +sudo apt-get update || true +sudo apt-get install -y \ + debootstrap \ + kpartx \ + qemu-utils \ + python-dev \ + build-essential \ + python-pip \ + python-lzma \ + yum \ + yum-utils \ + python-yaml