Add vim modeline instructing the editor to use syntax plugin provided by apparmor. Continuation of #392 to keep the diff list relatively short.
22 lines
506 B
Text
22 lines
506 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2022-2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{lib}/systemd/systemd-homework
|
|
profile systemd-homework @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/nameservice-strict>
|
|
include <abstractions/common/systemd>
|
|
|
|
@{exec_path} mr,
|
|
|
|
/etc/machine-id r,
|
|
|
|
include if exists <local/systemd-homework>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|