mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2025-01-30 23:05:11 +01:00
293217aee2
Move vim syntax comment to the end of the file, separated by newline, as requested in #380.
50 lines
1.1 KiB
Text
50 lines
1.1 KiB
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2019-2021 Mikhail Morfikov
|
|
# Copyright (C) 2022 Jeroen Rijken
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{lib}/dkms/dkms_autoinstaller
|
|
profile dkms-autoinstaller @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/consoles>
|
|
|
|
@{exec_path} rm,
|
|
|
|
@{sh_path} rix,
|
|
@{bin}/dkms rPx,
|
|
@{bin}/echo rix,
|
|
@{bin}/plymouth rix,
|
|
@{bin}/readlink rix,
|
|
@{bin}/run-parts rCx -> run-parts,
|
|
@{bin}/systemctl rCx -> systemctl,
|
|
@{bin}/tput rix,
|
|
|
|
# For shell pwd
|
|
/ r,
|
|
|
|
owner @{PROC}/cmdline r,
|
|
|
|
profile run-parts {
|
|
include <abstractions/base>
|
|
include <abstractions/consoles>
|
|
|
|
@{bin}/run-parts mr,
|
|
|
|
include if exists <local/dkms-autoinstaller_run-parts>
|
|
}
|
|
|
|
profile systemctl {
|
|
include <abstractions/base>
|
|
include <abstractions/app/systemctl>
|
|
|
|
include if exists <local/dkms-autoinstaller_systemctl>
|
|
}
|
|
|
|
include if exists <local/dkms-autoinstaller>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|