25 lines
739 B
Text
25 lines
739 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2021 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{libexec}/gsd-disk-utility-notify
|
|
profile gsd-disk-utility-notify @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/dbus-session-strict>
|
|
include <abstractions/dbus-strict>
|
|
|
|
dbus receive bus=system path=/org/freedesktop/UDisks2{,/**}
|
|
interface=org.freedesktop.DBus.{Properties,ObjectManager},
|
|
|
|
dbus send bus=system path=/org/freedesktop/UDisks2
|
|
interface=org.freedesktop.DBus.ObjectManager
|
|
member=GetManagedObjects,
|
|
|
|
@{exec_path} mr,
|
|
|
|
include if exists <local/gsd-disk-utility-notify>
|
|
}
|