20 lines
390 B
Text
20 lines
390 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2022 Jeroen Rijken
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/4.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{bin}/grub-mkrescue
|
|
profile grub-mkrescue @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/consoles>
|
|
|
|
@{exec_path} mr,
|
|
|
|
include if exists <local/grub-mkrescue>
|
|
}
|
|
|
|
|
|
# vim:syntax=apparmor
|