35 lines
821 B
Text
35 lines
821 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2020-2021 Mikhail Morfikov
|
|
# Copyright (C) 2021-2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/4.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{lib}/systemd/systemd-sysctl
|
|
profile systemd-sysctl @{exec_path} flags=(attach_disconnected) {
|
|
include <abstractions/base>
|
|
include <abstractions/consoles>
|
|
include <abstractions/common/systemd>
|
|
|
|
capability mknod,
|
|
capability net_admin,
|
|
capability sys_admin,
|
|
capability sys_ptrace,
|
|
capability sys_rawio,
|
|
|
|
@{exec_path} mr,
|
|
|
|
# Config file locations
|
|
@{run}/sysctl.d/{,*.conf} r,
|
|
/etc/sysctl.conf r,
|
|
/etc/sysctl.d/{,*.conf} r,
|
|
/usr/lib/sysctl.d/{,*.conf} r,
|
|
|
|
@{PROC}/sys/** rw,
|
|
|
|
include if exists <local/systemd-sysctl>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|