aboutsummaryrefslogtreecommitdiff
blob: 439e7b885bf378852649bcd0578c22d0310a68a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
FILTERS = \
	allow-arp.xml \
	allow-dhcp-server.xml \
	allow-dhcp.xml \
	allow-incoming-ipv4.xml \
	allow-ipv4.xml \
	clean-traffic.xml \
	no-arp-spoofing.xml \
	no-ip-multicast.xml \
	no-ip-spoofing.xml \
	no-mac-broadcast.xml \
	no-mac-spoofing.xml \
	no-other-l2-traffic.xml \
	no-other-rarp-traffic.xml \
	qemu-announce-self.xml \
	qemu-announce-self-rarp.xml

EXTRA_DIST=$(FILTERS)

confdir = $(sysconfdir)/libvirt

NWFILTER_DIR = "$(DESTDIR)$(sysconfdir)/libvirt/nwfilter"

install-data-local:
	$(MKDIR_P) "$(NWFILTER_DIR)"
	for f in $(FILTERS); do \
		$(INSTALL_DATA) $(srcdir)/$$f "$(NWFILTER_DIR)"; \
	done

uninstall-local::
	for f in $(FILTERS); do \
		rm -f "$(NWFILTER_DIR)/$$f"; \
	done
	-test -z $(shell ls $(NWFILTER_DIR)) || rmdir $(NWFILTER_DIR)