20 lines
538 B
Text
20 lines
538 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2021 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = /{usr/,}bin/glib-compile-schemas
|
|
profile glib-compile-schemas @{exec_path} {
|
|
include <abstractions/base>
|
|
|
|
@{exec_path} mr,
|
|
|
|
/usr/share/glib-2.0/schemas/{,*} r,
|
|
/usr/share/glib-2.0/schemas/gschemas.compiled.[A-Z0-9]* rw,
|
|
/usr/share/glib-2.0/schemas/gschemas.compiled rw,
|
|
|
|
include if exists <local/glib-compile-schemas>
|
|
}
|