diff --git a/contrib/drivers/dcos_centos_v1/image/install_imagebuild_deps.sh b/contrib/drivers/dcos_centos_v1/image/install_imagebuild_deps.sh new file mode 100755 index 0000000000..4f1256afed --- /dev/null +++ b/contrib/drivers/dcos_centos_v1/image/install_imagebuild_deps.sh @@ -0,0 +1,25 @@ +#!/bin/bash + +# This script installs all needed dependencies to generate +# images using diskimage-builder. Please note it only has been +# tested on Ubuntu Xenial. + +set -eux +set -o pipefail + +sudo apt update || true +sudo apt install -y \ + git \ + qemu-utils \ + python-dev \ + python-yaml \ + python-six \ + uuid-runtime \ + curl \ + sudo \ + kpartx \ + parted \ + wget \ + xfsprogs \ + yum \ + yum-utils