33 lines
958 B
Text
33 lines
958 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} = @{lib}/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,
|
|
|
|
dbus receive bus=session
|
|
interface=org.freedesktop.DBus.Introspectable
|
|
member=Introspect
|
|
peer=(name=:*, label=gnome-shell),
|
|
|
|
dbus bind bus=session
|
|
name=org.gnome.Disks.NotificationMonitor,
|
|
|
|
@{exec_path} mr,
|
|
|
|
include if exists <local/gsd-disk-utility-notify>
|
|
}
|