32 lines
No EOL
758 B
Text
32 lines
No EOL
758 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} = @{bin}/gnome-disk-image-mounter
|
|
profile gnome-disk-image-mounter @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/dconf-write>
|
|
include <abstractions/fonts>
|
|
include <abstractions/freedesktop.org>
|
|
include <abstractions/gtk>
|
|
include <abstractions/X-strict>
|
|
|
|
@{exec_path} mr,
|
|
|
|
/usr/share/X11/xkb/{,**} r,
|
|
|
|
# Allow to mount user files
|
|
owner @{HOME}/{,**} r,
|
|
owner @{MOUNTS}/{,**} r,
|
|
owner /tmp/*/{,**} r,
|
|
|
|
owner @{PROC}/@{pid}/mountinfo r,
|
|
|
|
@{run}/mount/utab r,
|
|
|
|
include if exists <local/gnome-disk-image-mounter>
|
|
} |