41 lines
911 B
Text
41 lines
911 B
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/4.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{lib}/systemd/systemd-remount-fs
|
|
profile systemd-remount-fs @{exec_path} flags=(attach_disconnected) {
|
|
include <abstractions/base>
|
|
include <abstractions/nameservice-strict>
|
|
include <abstractions/common/systemd>
|
|
|
|
capability net_admin,
|
|
capability sys_admin,
|
|
capability sys_resource,
|
|
|
|
mount options=(rw, remount) -> /,
|
|
mount options=(rw, remount) -> @{PROC}/,
|
|
|
|
@{exec_path} mr,
|
|
|
|
@{bin}/mount rix,
|
|
|
|
/etc/blkid.conf r,
|
|
/etc/fstab r,
|
|
|
|
@{run}/host/container-manager r,
|
|
@{run}/mount/utab rw,
|
|
@{run}/mount/utab.* rwk,
|
|
|
|
@{sys}/devices/virtual/block/dm-@{int}/dm/name r,
|
|
|
|
@{PROC}/ r,
|
|
@{PROC}/1/cmdline r,
|
|
|
|
include if exists <local/systemd-remount-fs>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|