152975d258
This is useful for users and for CI so we do not have to chase infra for changes when dependency issues arise. Change-Id: I7c8bdaddfe316ae171b34164f99bc3d568eafd92
9 lines
154 B
Bash
Executable File
9 lines
154 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eux
|
|
set -o pipefail
|
|
|
|
sudo apt-get update || true
|
|
sudo apt-get install -y qemu-utils kpartx || \
|
|
sudo yum -y install qemu-img kpartx
|