23 lines
501 B
Text
23 lines
501 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2025 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/4.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{bin}/ischroot
|
|
profile ischroot @{exec_path} flags=(attach_disconnected) {
|
|
include <abstractions/base>
|
|
include <abstractions/consoles>
|
|
|
|
@{exec_path} mr,
|
|
|
|
/var/lib/update-notifier/tmp.@{rand10} w,
|
|
|
|
@{PROC}/@{pid}/mountinfo r,
|
|
|
|
include if exists <local/ischroot>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|