21 lines
419 B
Text
21 lines
419 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}/grim
|
|
profile grim @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/user-write-strict>
|
|
|
|
@{exec_path} mr,
|
|
|
|
owner /dev/shm/grim-@{rand6} rw,
|
|
|
|
include if exists <local/grim>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|