Move vim syntax comment to the end of the file, separated by newline, as requested in #380.
27 lines
590 B
Text
27 lines
590 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}/needrestart/dpkg-status
|
|
profile needrestart-dpkg-status @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/consoles>
|
|
|
|
capability dac_read_search,
|
|
|
|
@{exec_path} mr,
|
|
|
|
@{sh_path} rix,
|
|
@{bin}/mkdir rix,
|
|
@{bin}/touch rix,
|
|
|
|
@{run}/needrestart/{,**} rw,
|
|
|
|
include if exists <local/needrestart-dpkg-status>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|