Add vim modeline instructing the editor to use syntax plugin provided by apparmor. Continuation of #392 to keep the diff list relatively short.
44 lines
1.3 KiB
Text
44 lines
1.3 KiB
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2020-2022 Mikhail Morfikov
|
|
# Copyright (C) 2021-2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{bin}/update-desktop-database
|
|
profile update-desktop-database @{exec_path} flags=(attach_disconnected) {
|
|
include <abstractions/base>
|
|
include <abstractions/consoles>
|
|
include <abstractions/freedesktop.org>
|
|
|
|
capability dac_override,
|
|
capability dac_read_search,
|
|
|
|
@{exec_path} mr,
|
|
|
|
@{system_share_dirs}/*ubuntu/applications/.mimeinfo.cache.* rw,
|
|
@{system_share_dirs}/*ubuntu/applications/mimeinfo.cache w,
|
|
|
|
@{system_share_dirs}/applications/.mimeinfo.cache.* rw,
|
|
@{system_share_dirs}/applications/mimeinfo.cache w,
|
|
|
|
/var/lib/snapd/desktop/applications/.mimeinfo.cache.* rw,
|
|
/var/lib/snapd/desktop/applications/mimeinfo.cache w,
|
|
|
|
owner @{user_share_dirs}/.mimeinfo.cache.* rw,
|
|
owner @{user_share_dirs}/**.desktop r,
|
|
owner @{user_share_dirs}/applications/.mimeinfo.cache.* rw,
|
|
owner @{user_share_dirs}/applications/mimeinfo.cache w,
|
|
owner @{user_share_dirs}/mimeinfo.cache w,
|
|
|
|
# Inherit silencer
|
|
deny network inet6 stream,
|
|
deny network inet stream,
|
|
deny network netlink raw,
|
|
|
|
include if exists <local/update-desktop-database>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|