mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2025-01-30 23:05:11 +01:00
293217aee2
Move vim syntax comment to the end of the file, separated by newline, as requested in #380.
53 lines
1.3 KiB
Text
53 lines
1.3 KiB
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2021-2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{lib}/apparmor/apparmor.systemd
|
|
profile apparmor.systemd @{exec_path} flags=(complain) {
|
|
include <abstractions/base>
|
|
include <abstractions/consoles>
|
|
include <abstractions/nameservice-strict>
|
|
|
|
capability dac_read_search,
|
|
capability mac_admin,
|
|
|
|
@{exec_path} mr,
|
|
|
|
@{sh_path} rix,
|
|
@{bin}/{,e}grep rix,
|
|
@{bin}/aa-status rPx,
|
|
@{bin}/apparmor_parser rPx,
|
|
@{bin}/getconf rix,
|
|
@{bin}/ls rix,
|
|
@{bin}/sed rix,
|
|
@{bin}/cat rix,
|
|
@{bin}/sort rix,
|
|
@{bin}/sysctl rix,
|
|
@{bin}/systemd-detect-virt rPx,
|
|
@{bin}/xargs rix,
|
|
|
|
@{lib}/apparmor/rc.apparmor.functions r,
|
|
|
|
/etc/apparmor.d/ r,
|
|
|
|
@{sys}/fs/cgroup/systemd/ r,
|
|
@{sys}/kernel/security/apparmor/{,**} r,
|
|
@{sys}/kernel/security/apparmor/.remove rw,
|
|
@{sys}/module/apparmor/ r,
|
|
|
|
@{PROC}/@{pids}/fd/ r,
|
|
@{PROC}/@{pids}/maps r,
|
|
@{PROC}/@{pids}/mounts r,
|
|
@{PROC}/mounts r,
|
|
@{PROC}/sys/kernel/apparmor_restrict_unprivileged_userns r,
|
|
|
|
/dev/tty rw,
|
|
|
|
include if exists <local/apparmor.systemd>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|