shorewall_code/Shorewall6/Makefile

22 lines
519 B
Makefile
Raw Normal View History

# Shorewall6 Makefile to restart if config-files are newer than last restart
VARDIR=$(shell /sbin/shorewall6 show vardir)
CONFDIR=/etc/shorewall6
RESTOREFILE?=firewall
all: $(VARDIR)/${RESTOREFILE}
$(VARDIR)/${RESTOREFILE}: $(CONFDIR)/*
@/sbin/shorewall6 -q save >/dev/null; \
if \
/sbin/shorewall6 -q restart >/dev/null 2>&1; \
then \
/sbin/shorewall6 -q save >/dev/null; \
else \
/sbin/shorewall6 -q restart 2>&1 | tail >&2; \
fi
2009-08-23 19:43:01 +02:00
clean:
2009-08-23 21:55:29 +02:00
@rm -f $(CONFDIR)/*~ $(CONFDIR)/.*~
2009-08-23 19:43:01 +02:00
.PHONY: clean
# EOF