19 lines
391 B
Text
19 lines
391 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}/img2txt
|
|
profile img2txt @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/user-read-strict>
|
|
|
|
@{exec_path} mr,
|
|
|
|
include if exists <local/img2txt>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|