bug 7938: The path of qemu is hardcoded as /usr/libexec/qemu-kvm in libvirtd under RHEL6. While, we use the different path, /usr/libexec/cloud-qemu-kvm(which build by ourself to support snapshot), then some of the feature just doesn't work, such as attaching disk.... Rebuild the package for RHEL6

status 7938: resolved fixed
This commit is contained in:
Edison Su 2011-01-12 13:54:39 -08:00
parent 5f1d54b978
commit c0354e7508
1 changed files with 6 additions and 1 deletions

View File

@ -218,14 +218,19 @@ Requires: jpackage-utils
Requires: %{name}-daemonize
Requires: /sbin/service
Requires: /sbin/chkconfig
%if 0%{?rhel} >= 6
Requires: cloud-kvm
%else
Requires: kvm
%endif
%if 0%{?fedora} >= 12
Requires: qemu-cloud-system-x86
Requires: qemu-cloud-img
%endif
%if 0%{?rhel} >= 6
Requires: cloud-qemu-kvm
Requires: cloud-qemu-img
%endif