26 lines
590 B
Text
26 lines
590 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/4.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{lib}/msgcollector/msgdispatcher_delete_wrapper
|
|
profile msgdispatcher-delete @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/consoles>
|
|
|
|
capability dac_read_search,
|
|
|
|
@{exec_path} mr,
|
|
|
|
@{sh_path} rix,
|
|
@{bin}/rm rix,
|
|
|
|
@{run}/msgcollector/user/* rw,
|
|
|
|
include if exists <local/msgdispatcher-delete>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|