22 lines
583 B
Text
22 lines
583 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2021 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = /{usr/,}lib/systemd/user-environment-generators/*
|
|
profile systemd-environment-d-generator @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/systemd-common>
|
|
include <abstractions/nameservice-strict>
|
|
|
|
@{exec_path} mr,
|
|
|
|
/etc/environment r,
|
|
|
|
owner @{user_config_dirs}/environment.d/{,*.conf} r,
|
|
|
|
include if exists <local/systemd-environment-d-generator>
|
|
}
|