mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2024-11-16 00:13:48 +01:00
33 lines
676 B
Plaintext
33 lines
676 B
Plaintext
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2022-2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{lib_dirs} = @{lib}/ /snap/{snapd,core}/@{int}@{lib}
|
|
|
|
@{exec_path} = @{lib_dirs}/snapd/snap-discard-ns
|
|
profile snap-discard-ns @{exec_path} {
|
|
include <abstractions/base>
|
|
|
|
capability setgid,
|
|
capability sys_admin,
|
|
|
|
network netlink raw,
|
|
|
|
umount @{run}/snapd/ns/*.mnt,
|
|
|
|
@{exec_path} mr,
|
|
|
|
/ r,
|
|
@{run}/ r,
|
|
@{run}/snapd/ r,
|
|
@{run}/snapd/lock/ r,
|
|
@{run}/snapd/lock/*.lock rwk,
|
|
@{run}/snapd/ns/ r,
|
|
@{run}/snapd/ns/* rw,
|
|
|
|
include if exists <local/snap-discard-ns>
|
|
} |