33 lines
838 B
Text
33 lines
838 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2019-2021 Mikhail Morfikov
|
|
# Copyright (C) 2023 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{bin}/dpkg-split
|
|
profile dpkg-split @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/consoles>
|
|
|
|
capability dac_read_search,
|
|
|
|
@{exec_path} mr,
|
|
|
|
# Do not strip env to avoid errors like the following:
|
|
# ERROR: ld.so: object 'libfakeroot-sysv.so' from LD_PRELOAD cannot be preloaded (cannot open
|
|
# shared object file): ignored.
|
|
@{bin}/dpkg-deb rpx,
|
|
|
|
/var/lib/dpkg/parts/ r,
|
|
/var/lib/dpkg/parts/* r,
|
|
|
|
/var/cache/apt/archives/*.deb r,
|
|
|
|
# For package building
|
|
@{user_build_dirs}/** rwkl -> @{user_build_dirs}/**,
|
|
|
|
include if exists <local/dpkg-split>
|
|
}
|