Add vim modeline instructing the editor to use syntax plugin provided by apparmor. Continuation of #394 to keep the diff list relatively short.
20 lines
471 B
Text
20 lines
471 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# 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} = @{lib}/{,NetworkManager/}nm-openvpn-auth-dialog
|
|
profile nm-openvpn-auth-dialog @{exec_path} {
|
|
include <abstractions/base>
|
|
|
|
@{exec_path} mr,
|
|
|
|
owner @{HOME}/.cert/nm-openvpn/*.pem r,
|
|
|
|
include if exists <local/nm-openvpn-auth-dialog>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|