25 lines
652 B
Text
25 lines
652 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2021-2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/4.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{bin}/pkcs11-register
|
|
profile pkcs11-register @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/pcscd>
|
|
|
|
@{exec_path} mr,
|
|
|
|
owner @{HOME}/.mozilla/firefox/*/pkcs11.txt rw,
|
|
owner @{HOME}/.mozilla/firefox/profiles.ini r,
|
|
owner @{HOME}/.pki/nssdb/pkcs11.txt r,
|
|
owner @{HOME}/.thunderbird/*/pkcs11.txt rw,
|
|
owner @{HOME}/.thunderbird/profiles.ini r,
|
|
|
|
include if exists <local/pkcs11-register>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|