36 lines
934 B
Text
36 lines
934 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2018-2021 Mikhail Morfikov
|
|
# 2021 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = /{usr/,}bin/gio
|
|
@{exec_path} += /{usr/,}bin/gio-launch-desktop
|
|
@{exec_path} += /{usr/,}lib/@{multiarch}/glib-[0-9]*/gio-launch-desktop
|
|
profile gio-launch-desktop @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/app-launcher-user>
|
|
include <abstractions/consoles>
|
|
include <abstractions/freedesktop.org>
|
|
include <abstractions/trash>
|
|
|
|
@{exec_path} mr,
|
|
|
|
# System files
|
|
/etc/gnome/defaults.list r,
|
|
/var/cache/gio-[0-9]*.[0-9]*/gnome-mimeapps.list r,
|
|
|
|
# User files
|
|
owner @{PROC}/@{pid}/fd/ r,
|
|
|
|
# file_inherit
|
|
owner @{HOME}/.xsession-errors w,
|
|
|
|
# Required by many gio command
|
|
owner @{HOME}/{,**} rw,
|
|
|
|
include if exists <local/gio-launch-desktop>
|
|
}
|