Add missing installation dependency 43/46243/2
authorTaseer Ahmed <taseer94@gmail.com>
Thu, 26 Oct 2017 07:25:25 +0000 (12:25 +0500)
committerTaseer Ahmed <taseer94@gmail.com>
Thu, 26 Oct 2017 16:52:08 +0000 (21:52 +0500)
- 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>
ci/deploy.sh

index 3699bf9..9a28b5a 100755 (executable)
@@ -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 && \