mirror of
https://gitlab.com/shorewall/code.git
synced 2024-11-27 10:03:41 +01:00
18 lines
453 B
Makefile
18 lines
453 B
Makefile
|
# Shorewall Makefile to restart if config-files are newer than last restart
|
||
|
VARDIR=$(shell /sbin/shorewall show vardir)
|
||
|
CONFDIR=/etc/shorewall
|
||
|
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
|