Add vim syntax modeline to files which didn't have it for some reason. Continuation of #396.
29 lines
652 B
Text
29 lines
652 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2024 valoq <valoq@mailbox.org>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{bin}/elinks
|
|
profile elinks @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/nameservice-strict>
|
|
include <abstractions/ssl_certs>
|
|
include <abstractions/user-download-strict>
|
|
include <abstractions/user-read-strict>
|
|
|
|
network inet dgram,
|
|
network inet6 dgram,
|
|
network inet stream,
|
|
network inet6 stream,
|
|
|
|
@{exec_path} mr,
|
|
|
|
owner @{user_config_dirs}/elinks/{,**} rw,
|
|
|
|
include if exists <local/elinks>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|