shorewall_code/Shorewall/Makefile
teastep 4e9c8698f5 Correct Makefile
git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@3485 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
2006-02-14 16:36:29 +00:00

17 lines
405 B
Makefile

# Shorewall Makefile to restart if config-files are newer than last restart
VARDIR=/var/lib/shorewall
CONFDIR=/etc/shorewall
all: $(VARDIR)/.restore
$(VARDIR)/restore-base: $(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