25 lines
582 B
Text
25 lines
582 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/4.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{lib}/gnupg/keyboxd
|
|
profile keyboxd @{exec_path} {
|
|
include <abstractions/base>
|
|
|
|
@{exec_path} mr,
|
|
|
|
owner @{HOME}/@{XDG_GPG_DIR}/ w,
|
|
owner @{HOME}/@{XDG_GPG_DIR}/common.conf r,
|
|
owner @{HOME}/@{XDG_GPG_DIR}/public-keys.d/ rw,
|
|
owner @{HOME}/@{XDG_GPG_DIR}/public-keys.d/* rwlk,
|
|
|
|
owner @{PROC}/@{pid}/fd/ r,
|
|
|
|
include if exists <local/keyboxd>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|