mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2025-02-06 18:25:05 +01:00
35a281d045
Signed-off-by: Alexandre Pujol <alexandre@pujol.io>
27 lines
535 B
Text
27 lines
535 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2022 Mikhail Morfikov
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = /{usr/,}bin/mtr-packet
|
|
profile mtr-packet @{exec_path} {
|
|
include <abstractions/base>
|
|
|
|
capability net_raw,
|
|
|
|
network inet stream,
|
|
network inet6 stream,
|
|
network inet dgram,
|
|
network inet6 dgram,
|
|
network inet raw,
|
|
network inet6 raw,
|
|
|
|
signal (receive) set=(kill, term) peer=mtr,
|
|
|
|
@{exec_path} mr,
|
|
|
|
include if exists <local/mtr-packet>
|
|
}
|