Skip to content
Snippets Groups Projects
Commit 81493d8e authored by Andrea Bolognani's avatar Andrea Bolognani
Browse files

apparmor: Allow running i686 VMs on Debian 12

In Debian 12, the qemu-system-i386 binary in /usr/bin is a wrapper
script, with the actual executable living in /usr/libexec instead.
This makes it impossible to run i686 VMs when AppArmor is enabled.

Allow running the actual binary.

https://bugs.debian.org/1030926



Signed-off-by: default avatarAndrea Bolognani <abologna@redhat.com>
Reviewed-by: default avatarJim Fehlig <jfehlig@suse.com>
parent e996536a
No related branches found
No related tags found
Loading
......@@ -172,6 +172,9 @@
/usr/bin/qemu-system-xtensaeb rmix,
/usr/bin/qemu-unicore32 rmix,
/usr/bin/qemu-x86_64 rmix,
# Debian 12 has a wrapper script in /usr/bin while the actual
# binary lives in /usr/libexec (Debian: #1030926)
/usr/libexec/qemu-system-i386 rmix,
# for Debian/Ubuntu qemu-block-extra / RPMs qemu-block-* (LP: #1554761)
/usr/{lib,lib64}/qemu/*.so mr,
/usr/lib/@{multiarch}/qemu/*.so mr,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment