Browse code

Merge "Install qemu-kvm package on centos/fedora"

Jenkins authored on 2015/06/30 10:18:21
Showing 2 changed files
... ...
@@ -10,6 +10,7 @@ iptables
10 10
 iputils
11 11
 kpartx
12 12
 kvm # NOPRIME
13
+qemu-kvm # NOPRIME
13 14
 libvirt-bin # NOPRIME
14 15
 libvirt-devel # NOPRIME
15 16
 libvirt-python # NOPRIME
... ...
@@ -34,6 +34,13 @@ function install_libvirt {
34 34
         #pip_install_gr <there-si-no-guestfs-in-pypi>
35 35
     elif is_fedora || is_suse; then
36 36
         install_package kvm
37
+        # there is a dependency issue with kvm (which is really just a
38
+        # wrapper to qemu-system-x86) that leaves some bios files out,
39
+        # so install qemu-kvm (which shouldn't strictly be needed, as
40
+        # everything has been merged into qemu-system-x86) to bring in
41
+        # the right packages. see
42
+        # https://bugzilla.redhat.com/show_bug.cgi?id=1235890
43
+        install_package qemu-kvm
37 44
         install_package libvirt libvirt-devel
38 45
         pip_install_gr libvirt-python
39 46
     fi