forked from extern/shorewall_code
17 lines
403 B
Makefile
17 lines
403 B
Makefile
|
# Shorewall Makefile to restart if config-files are newer than last restart
|
||
|
VARDIR=/var/lib/shorewall
|
||
|
CONFDIR=/etc/shorewall
|
||
|
all: $(VARDIR)/restarted
|
||
|
|
||
|
$(VARDIR)/restarted: $(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
|