diff options
author | Alexandru Avadanii <Alexandru.Avadanii@enea.com> | 2017-08-18 01:44:17 +0200 |
---|---|---|
committer | Alexandru Avadanii <Alexandru.Avadanii@enea.com> | 2017-08-18 01:52:46 +0200 |
commit | bab633b0310e68f79dc8624e27c88a3f2af99c61 (patch) | |
tree | 4bcf2e72ea81c2d1441ce4df887f1e5d4ad0f139 /ci/deploy.sh | |
parent | dc0e2355b21ab954456c9db7af1161359c966d57 (diff) |
ci/deploy.sh: yum install --skip-broken
Change-Id: I8098eff73ab15fe58cb357db99df76e1bd160652
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
Diffstat (limited to 'ci/deploy.sh')
-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 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 |