c48a40d479
Move several parts of the "install_test_deps.sh" script into the more standard bindep.txt. This list is intentionally restricted as a first step. Developer documentation is updated to use bindep and clarified slightly. Change-Id: I7520902dc324d920a0c7c44a2d35fe49f9b05614
25 lines
534 B
Bash
Executable File
25 lines
534 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eux
|
|
set -o pipefail
|
|
|
|
sudo apt-get update || true
|
|
sudo apt-get install -y --force-yes \
|
|
docker.io || \
|
|
sudo yum -y install --enablerepo=epel \
|
|
debootstrap \
|
|
dpkg \
|
|
docker || \
|
|
sudo zypper -n install \
|
|
docker || \
|
|
sudo emerge \
|
|
app-arch/bzip2 \
|
|
app-emulation/qemu \
|
|
dev-python/pyyaml \
|
|
sys-block/parted \
|
|
sys-apps/gptfdisk \
|
|
sys-fs/multipath-tools \
|
|
sys-fs/dosfstools \
|
|
qemu-img \
|
|
yum-utils
|