mirror of
https://gitlab.com/shorewall/code.git
synced 2024-11-08 16:54:10 +01:00
d33b803eb4
git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@9031 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
18 lines
456 B
Makefile
18 lines
456 B
Makefile
# Shorewall6 Makefile to restart if config-files are newer than last restart
|
|
VARDIR=$(shell /sbin/shorewall6 show vardir)
|
|
CONFDIR=/etc/shorewall6
|
|
RESTOREFILE?=.restore
|
|
all: $(VARDIR)/${RESTOREFILE}
|
|
|
|
$(VARDIR)/${RESTOREFILE}: $(CONFDIR)/*
|
|
@/sbin/shorewall -q save >/dev/null; \
|
|
if \
|
|
/sbin/shorewall -q restart >/dev/null 2>&1; \
|
|
then \
|
|
/sbin/shorewall -q save >/dev/null; \
|
|
else \
|
|
/sbin/shorewall -q restart 2>&1 | tail >&2; \
|
|
fi
|
|
|
|
# EOF
|