diff options
author | Taseer Ahmed <taseer94@gmail.com> | 2017-10-26 12:25:25 +0500 |
---|---|---|
committer | Alexandru Avadanii <Alexandru.Avadanii@enea.com> | 2017-10-27 09:35:41 +0000 |
commit | 1e1c8d421a2fa3fd28cf4201b17866ff057c84f2 (patch) | |
tree | 32bbf07f3f48aaa642e9a2842221ba70d300f2cb | |
parent | c75ba4b14bf2b5f2b21ebc8705e2e4e60746f960 (diff) |
Add missing installation dependency
- uuidgen is required for installation
- Add installation package for both Debian and
RHEL based linux distribitions
Change-Id: I9c9bf04e64dc6be1b4e8fb92aea531eccbea33a5
Signed-off-by: Taseer Ahmed <taseer94@gmail.com>
(cherry picked from commit 95835f48cc4a65e5ccc1c48c94fa4caa51e67733)
-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 && \ |