19 lines
396 B
Text
19 lines
396 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2022-2024 Roman Beslik <me@beroal.in.ua>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{bin}/xeyes
|
|
profile xeyes /{,usr/}{,s}bin/xeyes {
|
|
include <abstractions/base>
|
|
include <abstractions/X-strict>
|
|
|
|
@{exec_path} mr,
|
|
|
|
include if exists <local/xeyes>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|