Add vim syntax modeline to files which didn't have it for some reason. Continuation of #396.
21 lines
429 B
Text
21 lines
429 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/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{bin}/pdftotext
|
|
profile pdftotext @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/user-write-strict>
|
|
|
|
@{exec_path} mr,
|
|
|
|
/usr/share/poppler/{,**} r,
|
|
|
|
include if exists <local/pdftotext>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|