21 lines
422 B
Text
21 lines
422 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2025 valoq <valoq@mailbox.org>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/4.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{bin}/pdfinfo
|
|
profile pdfinfo @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/user-read-strict>
|
|
|
|
@{exec_path} mr,
|
|
|
|
/usr/share/poppler/{,**} r,
|
|
|
|
include if exists <local/pdfinfo>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|