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

file. This patch adds read permissions for /srv/tftpboot/ References: https://bugzilla.novell.com/show_bug.cgi?id=738905 Somehow ;-) [1] Acked-By: John Johansen [1] see mailinglist for details ;-)
59 lines
1.6 KiB
Text
59 lines
1.6 KiB
Text
# ------------------------------------------------------------------
|
|
#
|
|
# Copyright (C) 2009 John Dong <jdong@ubuntu.com>
|
|
# Copyright (C) 2010 Canonical Ltd.
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of version 2 of the GNU General Public
|
|
# License published by the Free Software Foundation.
|
|
#
|
|
# ------------------------------------------------------------------
|
|
|
|
@{TFTP_DIR}=/var/tftp /srv/tftpboot
|
|
|
|
#include <tunables/global>
|
|
/usr/sbin/dnsmasq {
|
|
#include <abstractions/base>
|
|
#include <abstractions/nameservice>
|
|
|
|
capability net_bind_service,
|
|
capability setgid,
|
|
capability setuid,
|
|
capability dac_override,
|
|
capability net_admin, # for DHCP server
|
|
capability net_raw, # for DHCP server ping checks
|
|
network inet raw,
|
|
|
|
/etc/dnsmasq.conf r,
|
|
/etc/dnsmasq.d/ r,
|
|
/etc/dnsmasq.d/* r,
|
|
/etc/ethers r,
|
|
|
|
/usr/sbin/dnsmasq mr,
|
|
|
|
/{,var/}run/*dnsmasq*.pid w,
|
|
/{,var/}run/dnsmasq-forwarders.conf r,
|
|
/{,var/}run/dnsmasq/ r,
|
|
/{,var/}run/dnsmasq/* rw,
|
|
|
|
/var/lib/misc/dnsmasq.leases rw, # Required only for DHCP server usage
|
|
|
|
# for the read-only TFTP server
|
|
@{TFTP_DIR}/ r,
|
|
@{TFTP_DIR}/** r,
|
|
|
|
# libvirt lease and hosts files for dnsmasq
|
|
/var/lib/libvirt/dnsmasq/ r,
|
|
/var/lib/libvirt/dnsmasq/*.leases rw,
|
|
/var/lib/libvirt/dnsmasq/*.hostsfile r,
|
|
|
|
# libvirt pid files for dnsmasq
|
|
/{,var/}run/libvirt/network/ r,
|
|
/{,var/}run/libvirt/network/*.pid rw,
|
|
|
|
# NetworkManager integration
|
|
/{,var/}run/nm-dns-dnsmasq.conf r,
|
|
|
|
# Site-specific additions and overrides. See local/README for details.
|
|
#include <local/usr.sbin.dnsmasq>
|
|
}
|