forked from extern/shorewall_code
f5a815b736
git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@4058 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
18 lines
547 B
Makefile
18 lines
547 B
Makefile
# Shorewall Lite Makefile to restart if firewall script is newer than last restart
|
|
VARDIR=/var/lib/shorewall-lite
|
|
SHAREDIR=/usr/share/shorewall-lite
|
|
RESTOREFILE?=.restore
|
|
all: $(VARDIR)/${RESTOREFILE}
|
|
|
|
$(VARDIR)/${RESTOREFILE}: $(SHAREDIR)/firewall
|
|
@/usr/share/shorewall-lite/shorewall -q save >/dev/null; \
|
|
if \
|
|
/usr/share/shorewall-lite/shorewall -q restart >/dev/null 2>&1; \
|
|
then \
|
|
/usr/share/shorewall-lite/shorewall -q save >/dev/null; \
|
|
else \
|
|
/usr/share/shorewall-lite/shorewall -q restart 2>&1 | tail >&2; \
|
|
fi
|
|
|
|
# EOF
|