41 lines
951 B
Text
41 lines
951 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2021 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = /{usr/,}bin/paccache
|
|
profile paccache @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/nameservice-strict>
|
|
|
|
capability dac_read_search,
|
|
capability mknod,
|
|
|
|
@{exec_path} mr,
|
|
|
|
/{usr/,}bin/bash rix,
|
|
/{usr/,}bin/cat rix,
|
|
/{usr/,}bin/{m,g,}awk rix,
|
|
/{usr/,}bin/gettext rix,
|
|
/{usr/,}bin/pacman rPx,
|
|
/{usr/,}bin/pacman-conf rPx,
|
|
/{usr/,}bin/pacsort rix,
|
|
/{usr/,}bin/rm rix,
|
|
/{usr/,}bin/stat rix,
|
|
/{usr/,}bin/tput rix,
|
|
/{usr/,}bin/xargs rix,
|
|
|
|
/usr/share/makepkg/util/*.sh r,
|
|
/usr/share/terminfo/x/xterm-256color r,
|
|
|
|
/var/cache/pacman/pkg/{,*} rw,
|
|
|
|
owner @{PROC}/@{pid}/fd/ r,
|
|
|
|
/dev/tty rw,
|
|
|
|
include if exists <local/paccache>
|
|
}
|