mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2025-01-18 08:58:15 +01:00
38 lines
830 B
Text
38 lines
830 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2019-2021 Mikhail Morfikov
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = /{usr/,}bin/changestool
|
|
profile changestool @{exec_path} {
|
|
include <abstractions/base>
|
|
|
|
@{exec_path} mr,
|
|
|
|
/{usr/,}bin/gpg rCx -> gpg,
|
|
/{usr/,}bin/gpgconf rCx -> gpg,
|
|
/{usr/,}bin/gpgsm rCx -> gpg,
|
|
|
|
owner @{PROC}/@{pid}/fd/ r,
|
|
|
|
# For package building
|
|
owner @{user_build_dirs}/** rwkl -> @{user_build_dirs}/**,
|
|
|
|
|
|
profile gpg {
|
|
include <abstractions/base>
|
|
|
|
/{usr/,}bin/gpg mr,
|
|
/{usr/,}bin/gpgconf mr,
|
|
/{usr/,}bin/gpgsm mr,
|
|
|
|
owner @{HOME}/@{XDG_GPG_DIR}/ r,
|
|
owner @{HOME}/@{XDG_GPG_DIR}/** rwkl -> @{HOME}/@{XDG_GPG_DIR}/**,
|
|
|
|
}
|
|
|
|
include if exists <local/changestool>
|
|
}
|