mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-05 17:01:00 +01:00

Also adjust the signal rules in the dovecot-common and apache2-common
abstractions to match the profile names, and to really do that
(peer=...{bin,sbin}... didn't work, the correct syntax would have been
peer=...\{bin,sbin\}...)
This fixes the regression introduced by !149 / commit
4200932d8f
33 lines
932 B
Text
33 lines
932 B
Text
#include <tunables/global>
|
|
profile avahi-daemon /usr/{bin,sbin}/avahi-daemon {
|
|
#include <abstractions/base>
|
|
#include <abstractions/consoles>
|
|
#include <abstractions/dbus>
|
|
#include <abstractions/nameservice>
|
|
|
|
capability chown,
|
|
capability dac_override,
|
|
capability kill,
|
|
capability setuid,
|
|
capability setgid,
|
|
capability sys_chroot,
|
|
|
|
network netlink dgram,
|
|
|
|
/etc/avahi/ r,
|
|
/etc/avahi/avahi-daemon.conf r,
|
|
/etc/avahi/hosts r,
|
|
/etc/avahi/services/ r,
|
|
/etc/avahi/services/*.service r,
|
|
@{PROC}/@{pid}/fd/ r,
|
|
/usr/{bin,sbin}/avahi-daemon mr,
|
|
/usr/share/avahi/introspection/*.introspect r,
|
|
/usr/share/dbus-1/interfaces/org.freedesktop.Avahi.*.xml r,
|
|
/{,var/}run/avahi-daemon/ w,
|
|
/{,var/}run/avahi-daemon/pid krw,
|
|
/{,var/}run/avahi-daemon/socket w,
|
|
/{,var/}run/systemd/notify w,
|
|
|
|
# Site-specific additions and overrides. See local/README for details.
|
|
#include <local/usr.sbin.avahi-daemon>
|
|
}
|