Move vim syntax comment to the end of the file, separated by newline, as requested in #380.
37 lines
898 B
Text
37 lines
898 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2021 Mikhail Morfikov
|
|
# Copyright (C) 2021-2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{lib}/bluetooth/obexd
|
|
profile obexd @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/bus-system>
|
|
include <abstractions/bus-session>
|
|
include <abstractions/user-download-strict>
|
|
|
|
network bluetooth stream,
|
|
network bluetooth seqpacket,
|
|
|
|
#aa:dbus own bus=session name=org.bluez.obex
|
|
|
|
dbus receive bus=system path=/org/bluez/obex/@{uuid}
|
|
interface=org.bluez.Profile1
|
|
member=Release
|
|
peer=(name=:*, label=bluetoothd),
|
|
|
|
@{exec_path} mr,
|
|
|
|
owner @{user_cache_dirs}/ rw,
|
|
owner @{user_cache_dirs}/obexd/{,**} rw,
|
|
|
|
owner @{HOME}/bluetooth/* rw,
|
|
|
|
include if exists <local/obexd>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|