diff options
author | Taseer Ahmed <taseer94@gmail.com> | 2017-10-26 12:25:25 +0500 |
---|---|---|
committer | Taseer Ahmed <taseer94@gmail.com> | 2017-10-26 21:52:08 +0500 |
commit | 95835f48cc4a65e5ccc1c48c94fa4caa51e67733 (patch) | |
tree | abdeb8d32a463d2b5e318d04491171b7dbdc2299 | |
parent | 6cb5e8ee2deeda4b08cefe8925078410994d084f (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>
-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 && \ |