40 lines
844 B
Text
40 lines
844 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} = /usr/share/libalpm/scripts/mkinitcpio-remove
|
|
profile pacman-hook-mkinitcpio-remove @{exec_path} {
|
|
include <abstractions/base>
|
|
|
|
capability dac_read_search,
|
|
capability mknod,
|
|
|
|
@{exec_path} mr,
|
|
|
|
@{bin}/bash rix,
|
|
@{bin}/cmp rix,
|
|
@{bin}/mv rix,
|
|
@{bin}/rm rix,
|
|
@{bin}/sed rix,
|
|
|
|
/usr/share/mkinitcpio/*.preset r,
|
|
/etc/mkinitcpio.d/*.preset rw,
|
|
|
|
/boot/vmlinuz-* rw,
|
|
/boot/initramfs-*.img rw,
|
|
/boot/initramfs-*-fallback.img rw,
|
|
|
|
/dev/tty rw,
|
|
|
|
# Inherit Silencer
|
|
deny network inet6 stream,
|
|
deny network inet stream,
|
|
|
|
include if exists <local/pacman-hook-mkinitcpio-remove>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|