22 lines
551 B
Text
22 lines
551 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}/tracker-xdg-portal-3
|
|
profile tracker-xdg-portal @{exec_path} flags=(complain) {
|
|
include <abstractions/base>
|
|
include <abstractions/bus-session>
|
|
include <abstractions/gnome-strict>
|
|
|
|
#aa:dbus own bus=session name=org.freedesktop.portal.Tracker
|
|
|
|
@{exec_path} mr,
|
|
|
|
include if exists <local/tracker-xdg-portal>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|