33 lines
931 B
Text
33 lines
931 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} = @{bin}/gnome-logs
|
|
profile gnome-logs @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/common/gnome>
|
|
include <abstractions/user-download-strict>
|
|
|
|
@{exec_path} mr,
|
|
@{open_path} rPx -> child-open-help,
|
|
|
|
/etc/machine-id r,
|
|
|
|
/var/lib/systemd/catalog/database r,
|
|
|
|
/{run,var}/log/journal/ r,
|
|
/{run,var}/log/journal/@{hex32}/ r,
|
|
/{run,var}/log/journal/@{hex32}/system.journal r,
|
|
/{run,var}/log/journal/@{hex32}/system@@{hex32}-@{hex16}-@{hex16}.journal r,
|
|
/{run,var}/log/journal/@{hex32}/user-@{uid}.journal r,
|
|
/{run,var}/log/journal/@{hex32}/user-@{uid}@@{hex32}-@{hex16}-@{hex16}.journal r,
|
|
/{run,var}/log/journal/remote/ r,
|
|
|
|
include if exists <local/gnome-logs>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|