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

Allow devpts mounts #977

Merged
merged 2 commits into from
Jul 9, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
incusd/apparmor: Allow devpts mounts
Signed-off-by: Stéphane Graber <[email protected]>
  • Loading branch information
stgraber committed Jul 9, 2024
commit 32112704e5194c26ba8733d288b65711e2f939d2
3 changes: 3 additions & 0 deletions internal/server/apparmor/instance_lxc.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ profile "{{ .name }}" flags=(attach_disconnected,mediate_deleted) {
# Handle tmpfs
mount fstype=tmpfs,

# Handle devpts
mount fstype=devpts,

# Allow limited modification of mount propagation
mount options=(rw,slave) -> /,
mount options=(rw,rslave) -> /,
Expand Down
Loading