23 lines
541 B
Text
23 lines
541 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2021 Mikhail Morfikov
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = /{usr/,}bin/obex-folder-listing
|
|
profile obex-folder-listing @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/private-files-strict>
|
|
include <abstractions/user-download-strict>
|
|
|
|
@{exec_path} mr,
|
|
|
|
owner @{HOME}/ r,
|
|
owner @{HOME}/**/ r,
|
|
owner @{MOUNTS}/ r,
|
|
owner @{MOUNTS}/**/ r,
|
|
|
|
include if exists <local/obex-folder-listing>
|
|
}
|