diff options
author | Michael Polenchuk <mpolenchuk@mirantis.com> | 2017-10-27 06:37:32 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-10-27 06:37:32 +0000 |
commit | 84dc7744f0b07ce4b9ae1f214bfdda2872122d62 (patch) | |
tree | 7436d928bd47a72bfc999d672b28ef0eea831c13 | |
parent | 41cd7a1e13108f078f3c64a5fc225a6b5a8dc229 (diff) | |
parent | 95835f48cc4a65e5ccc1c48c94fa4caa51e67733 (diff) |
Merge "Add missing installation dependency"
-rwxr-xr-x | ci/deploy.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh index 3699bf966..9a28b5ade 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -265,9 +265,9 @@ pushd "${DEPLOY_DIR}" > /dev/null # Install required packages [ -n "$(command -v apt-get)" ] && sudo apt-get install -y \ - git make rsync mkisofs curl virtinst cpu-checker qemu-kvm + git make rsync mkisofs curl virtinst cpu-checker qemu-kvm uuid-runtime [ -n "$(command -v yum)" ] && sudo yum install -y --skip-broken \ - git make rsync genisoimage curl virt-install qemu-kvm + git make rsync genisoimage curl virt-install qemu-kvm util-linux if [ "$(uname -i)" = "aarch64" ]; then [ -n "$(command -v apt-get)" ] && sudo apt-get install -y vgabios && \ |