From: Alexandru Avadanii Date: Thu, 17 Aug 2017 23:44:17 +0000 (+0200) Subject: ci/deploy.sh: yum install --skip-broken X-Git-Tag: opnfv-5.0.RC1~142 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F59%2F39559%2F1;p=fuel.git ci/deploy.sh: yum install --skip-broken Change-Id: I8098eff73ab15fe58cb357db99df76e1bd160652 Signed-off-by: Alexandru Avadanii --- diff --git a/ci/deploy.sh b/ci/deploy.sh index 1ace950e0..cf7b3b35b 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -285,13 +285,13 @@ 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 -[ -n "$(command -v yum)" ] && sudo yum install -y \ +[ -n "$(command -v yum)" ] && sudo yum install -y --skip-broken \ git make rsync genisoimage curl virt-install qemu-kvm if [ "$(uname -i)" = "aarch64" ]; then [ -n "$(command -v apt-get)" ] && sudo apt-get install -y vgabios && \ sudo ln -sf /usr/share/vgabios/vgabios.bin /usr/share/qemu/vgabios-stdvga.bin - [ -n "$(command -v yum)" ] && sudo yum install -y vgabios + [ -n "$(command -v yum)" ] && sudo yum install -y --skip-broken vgabios fi # Check scenario file existence