30 lines
847 B
Text
30 lines
847 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2019-2022 Mikhail Morfikov
|
|
# Copyright (C) 2022-2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/4.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{bin}/dconf-editor
|
|
profile dconf-editor @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/dconf-write>
|
|
include <abstractions/fontconfig-cache-read>
|
|
include <abstractions/gnome-strict>
|
|
|
|
@{exec_path} mr,
|
|
|
|
@{open_path} rPx -> child-open-help,
|
|
|
|
# When GSETTINGS_BACKEND=keyfile
|
|
owner @{user_config_dirs}/glib-2.0/ rw,
|
|
owner @{user_config_dirs}/glib-2.0/settings/ rw,
|
|
owner @{user_config_dirs}/glib-2.0/settings/keyfile rw,
|
|
owner @{user_config_dirs}/glib-2.0/settings/.goutputstream-@{rand6} rw,
|
|
|
|
include if exists <local/dconf-editor>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|