Add vim modeline instructing the editor to use syntax plugin provided by apparmor. Continuation of #394 to keep the diff list relatively short.
27 lines
710 B
Text
27 lines
710 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2023-2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{lib}/kf{5,6}/kio_http_cache_cleaner
|
|
@{exec_path} += @{lib}/@{multiarch}/{,libexec/}kf{5,6}/kio_http_cache_cleaner
|
|
profile kio_http_cache_cleaner @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/qt5>
|
|
|
|
@{exec_path} mr,
|
|
|
|
/usr/share/icu/@{int}.@{int}/*.dat r,
|
|
|
|
owner @{user_cache_dirs}/kio_http/{,*} rw,
|
|
owner @{user_config_dirs}/kio_httprc r,
|
|
|
|
owner @{run}/user/@{uid}/kio_http_cache_cleaner rw,
|
|
|
|
include if exists <local/kio_http_cache_cleaner>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|