We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b10d96 commit d9c70eeCopy full SHA for d9c70ee
installer/kvm-qemu.sh
@@ -918,13 +918,13 @@ function install_qemu() {
918
make -j"$(nproc)" install
919
fi
920
# hack for libvirt/virt-manager
921
- if [ ! -f /usr/bin/qemu-system-x86_64-spice ]; then
+ if [ ! -L /usr/bin/qemu-system-x86_64-spice ]; then
922
ln -s /usr/bin/qemu-system-x86_64 /usr/bin/qemu-system-x86_64-spice
923
924
- if [ ! -f /usr/bin/kvm-spice ]; then
+ if [ ! -L /usr/bin/kvm-spice ]; then
925
ln -s /usr/bin/qemu-system-x86_64 /usr/bin/kvm-spice
926
927
- if [ ! -f /usr/bin/kvm ]; then
+ if [ ! -L /usr/bin/kvm ]; then
928
ln -s /usr/bin/qemu-system-x86_64 /usr/bin/kvm
929
930
if [ $? -eq 0 ]; then
0 commit comments