mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-04 16:35:02 +01:00

(eg Ubuntu) are providing a symlink from /var/run to /run, so our profiles should handle both situations.
29 lines
781 B
Text
29 lines
781 B
Text
#include <tunables/global>
|
|
/usr/sbin/avahi-daemon {
|
|
#include <abstractions/base>
|
|
#include <abstractions/consoles>
|
|
#include <abstractions/nameservice>
|
|
|
|
capability chown,
|
|
capability dac_override,
|
|
capability kill,
|
|
capability setuid,
|
|
capability setgid,
|
|
capability sys_chroot,
|
|
|
|
/etc/avahi/ r,
|
|
/etc/avahi/avahi-daemon.conf r,
|
|
/etc/avahi/hosts r,
|
|
/etc/avahi/services/ r,
|
|
/etc/avahi/services/*.service r,
|
|
/proc/*/fd/ r,
|
|
/usr/sbin/avahi-daemon mr,
|
|
/usr/share/avahi/introspection/*.introspect r,
|
|
/{,var/}run/avahi-daemon/ w,
|
|
/{,var/}run/avahi-daemon/pid krw,
|
|
/{,var/}run/avahi-daemon/socket w,
|
|
/{,var/}run/dbus/system_bus_socket w,
|
|
|
|
# Site-specific additions and overrides. See local/README for details.
|
|
#include <local/usr.sbin.avahi-daemon>
|
|
}
|