Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the snap qemu native mount regression #3871

Merged
merged 1 commit into from
Jan 14, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/platform/backends/qemu/qemu_vm_process_spec.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,10 @@ profile %1 flags=(attach_disconnected) {
capability setgid,
capability setuid,

# for bridge helper
capability net_admin,
capability net_raw,
ricab marked this conversation as resolved.
Show resolved Hide resolved

network inet stream,
network inet6 stream,

Expand Down Expand Up @@ -154,7 +158,7 @@ profile %1 flags=(attach_disconnected) {
/{usr/,}bin/cat rmix,

# to execute bridge helper
%4/bin/bridge_helper,
%4/bin/bridge_helper ix,

# for restore
/{usr/,}bin/bash rmix,
Expand Down
Loading