mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2025-01-18 08:58:15 +01:00
40a30dc310
Move vim syntax comment to the end of the file, separated by newline, as requested in #380.
39 lines
836 B
Text
39 lines
836 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2023-2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{lib}/passimd
|
|
profile passimd @{exec_path} flags=(attach_disconnected) {
|
|
include <abstractions/base>
|
|
include <abstractions/bus-system>
|
|
include <abstractions/nameservice-strict>
|
|
|
|
capability dac_read_search,
|
|
|
|
network inet stream,
|
|
network inet6 stream,
|
|
network netlink raw,
|
|
|
|
#aa:dbus own bus=system name=org.freedesktop.Passim
|
|
|
|
@{exec_path} mr,
|
|
|
|
/usr/share/dbus-1/interfaces/org.freedesktop.Passim.xml r,
|
|
|
|
/etc/passim.conf r,
|
|
|
|
/var/lib/passim/{,**} r,
|
|
/var/lib/passim/data/{,**} rw,
|
|
|
|
owner /var/log/passim/* rw,
|
|
|
|
@{PROC}/@{pid}/cmdline r,
|
|
|
|
include if exists <local/passimd>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|