25 lines
685 B
Text
25 lines
685 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2021 Mikhail Morfikov
|
|
# Copyright (C) 2023-2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/4.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{lib}/{,gvfs/}gvfsd-computer
|
|
profile gvfsd-computer @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/bus-session>
|
|
|
|
#aa:dbus own bus=session name=org.gtk.vfs.mountpoint_@{int}
|
|
#aa:dbus talk bus=session name=org.gtk.Private.RemoteVolumeMonitor label=gvfs-afc-volume-monitor
|
|
|
|
@{exec_path} mr,
|
|
|
|
owner @{run}/user/@{uid}/gvfsd/socket-@{rand8} rw,
|
|
|
|
include if exists <local/gvfsd-computer>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|