mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2025-02-06 18:25:05 +01:00
24 lines
665 B
Text
24 lines
665 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2018-2021 Mikhail Morfikov
|
|
# 2021 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = /{usr/,}bin/gtk-update-icon-cache /{usr/,}bin/gtk4-update-icon-cache
|
|
profile gtk-update-icon-cache @{exec_path} flags=(attach_disconnected) {
|
|
include <abstractions/base>
|
|
include <abstractions/consoles>
|
|
|
|
@{exec_path} mr,
|
|
|
|
/usr/share/icons/** r,
|
|
/usr/share/icons/**/.icon-theme.cache rw,
|
|
/usr/share/icons/**/icon-theme.cache rw,
|
|
|
|
deny /apparmor/.null rw,
|
|
|
|
include if exists <local/gtk-update-icon-cache>
|
|
}
|