22 lines
547 B
Text
22 lines
547 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} = @{lib}/gnome-session-check-*
|
|
profile gnome-session-check @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/graphics>
|
|
|
|
@{exec_path} mr,
|
|
|
|
@{lib}/gnome-session-check-accelerated-gl-helper ix,
|
|
@{lib}/gnome-session-check-accelerated-gles-helper ix,
|
|
|
|
include if exists <local/gnome-session-check>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|