mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2025-01-30 06:45:10 +01:00
293217aee2
Move vim syntax comment to the end of the file, separated by newline, as requested in #380.
29 lines
550 B
Text
29 lines
550 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2021 Alexandre Pujol
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{bin}/freefall
|
|
profile freefall @{exec_path} {
|
|
include <abstractions/base>
|
|
|
|
capability ipc_lock,
|
|
capability mknod,
|
|
capability sys_nice,
|
|
|
|
@{exec_path} mr,
|
|
|
|
@{sys}/devices/**/unload_heads r,
|
|
@{sys}/class/leds/**/brightness r,
|
|
|
|
/dev/freefall rw,
|
|
/dev/sd[a-z]* rk,
|
|
/dev/sd[a-z]*[0-9]* rk,
|
|
|
|
include if exists <local/freefall>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|