forked from extern/shorewall_code
2883479e53
git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@9572 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
18 lines
460 B
Makefile
18 lines
460 B
Makefile
# 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
|
|
|
|
# EOF
|