22 lines
520 B
Text
22 lines
520 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2022-2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/4.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = /usr/share/update-notifier/notify-updates-outdated
|
|
profile notify-updates-outdated @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/consoles>
|
|
|
|
@{exec_path} mr,
|
|
|
|
@{sh_path} rix,
|
|
@{bin}/gettext rix,
|
|
|
|
include if exists <local/notify-updates-outdated>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|