mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2025-01-30 23:05:11 +01:00
65 lines
1.3 KiB
Text
65 lines
1.3 KiB
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>
|
|
|
|
profile acpi-powerbtn flags=(attach_disconnected) {
|
|
include <abstractions/base>
|
|
|
|
/etc/acpi/powerbtn-acpi-support.sh r,
|
|
|
|
@{sh_path} rix,
|
|
@{bin}/{e,}grep rix,
|
|
@{bin}/killall5 rix,
|
|
@{bin}/pgrep rix,
|
|
@{bin}/pinky rix,
|
|
@{bin}/sed rix,
|
|
@{bin}/shutdown rix,
|
|
/etc/acpi/powerbtn.sh rix,
|
|
|
|
@{bin}/dbus-send Cx -> bus,
|
|
@{bin}/fgconsole Cx -> fgconsole,
|
|
@{bin}/ps Px,
|
|
@{bin}/systemctl Cx -> systemctl,
|
|
|
|
/usr/share/acpi-support/** r,
|
|
|
|
@{PROC} r,
|
|
@{PROC}/uptime r,
|
|
@{PROC}/@{pids}/cmdline r,
|
|
@{PROC}/@{pids}/stat r,
|
|
|
|
deny / r,
|
|
|
|
profile fgconsole {
|
|
include <abstractions/base>
|
|
|
|
capability sys_tty_config,
|
|
|
|
@{bin}/fgconsole r,
|
|
|
|
/dev/tty rw,
|
|
owner /dev/tty@{int} rw,
|
|
}
|
|
|
|
profile bus flags=(complain) {
|
|
include <abstractions/base>
|
|
include <abstractions/app/bus>
|
|
|
|
include if exists <local/acpi-powerbtn_bus>
|
|
}
|
|
|
|
profile systemctl {
|
|
include <abstractions/base>
|
|
include <abstractions/app/systemctl>
|
|
|
|
include if exists <local/acpi-powerbtn_systemctl>
|
|
}
|
|
|
|
include if exists <local/acpi-powerbtn>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|