mirror of
https://gitlab.com/shorewall/code.git
synced 2024-11-26 17:43:15 +01:00
Correct Makefile
git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@4058 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
parent
0cac68326a
commit
f5a815b736
@ -1,17 +1,17 @@
|
|||||||
# Shorewall Makefile to restart if config-files are newer than last restart
|
# Shorewall Lite Makefile to restart if firewall script is newer than last restart
|
||||||
VARDIR=/var/lib/shorewall
|
VARDIR=/var/lib/shorewall-lite
|
||||||
SHAREDIR=/usr/share/shorewall
|
SHAREDIR=/usr/share/shorewall-lite
|
||||||
RESTOREFILE?=.restore
|
RESTOREFILE?=.restore
|
||||||
all: $(VARDIR)/${RESTOREFILE}
|
all: $(VARDIR)/${RESTOREFILE}
|
||||||
|
|
||||||
$(VARDIR)/${RESTOREFILE}: $(SHAREDIR)/firewall
|
$(VARDIR)/${RESTOREFILE}: $(SHAREDIR)/firewall
|
||||||
@/sbin/shorewall -q save >/dev/null; \
|
@/usr/share/shorewall-lite/shorewall -q save >/dev/null; \
|
||||||
if \
|
if \
|
||||||
/sbin/shorewall -q restart >/dev/null 2>&1; \
|
/usr/share/shorewall-lite/shorewall -q restart >/dev/null 2>&1; \
|
||||||
then \
|
then \
|
||||||
/sbin/shorewall -q save >/dev/null; \
|
/usr/share/shorewall-lite/shorewall -q save >/dev/null; \
|
||||||
else \
|
else \
|
||||||
/sbin/shorewall -q restart 2>&1 | tail >&2; \
|
/usr/share/shorewall-lite/shorewall -q restart 2>&1 | tail >&2; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# EOF
|
# EOF
|
||||||
|
Loading…
Reference in New Issue
Block a user