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