File: Makefile

package info (click to toggle)
shorewall6 4.4.11.6-1%2Bsqueeze1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,244 kB
  • ctags: 63
  • sloc: sh: 4,279; makefile: 74
file content (21 lines) | stat: -rw-r--r-- 519 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Shorewall6 Makefile to restart if config-files are newer than last restart
VARDIR=$(shell /sbin/shorewall6 show vardir)
CONFDIR=/etc/shorewall6
RESTOREFILE?=firewall
all: $(VARDIR)/${RESTOREFILE}

$(VARDIR)/${RESTOREFILE}: $(CONFDIR)/*
	@/sbin/shorewall6 -q save >/dev/null; \
	if \
	    /sbin/shorewall6 -q restart >/dev/null 2>&1; \
	then \
	    /sbin/shorewall6 -q save >/dev/null; \
	else \
	    /sbin/shorewall6 -q restart 2>&1 | tail >&2; \
	fi

clean:
	@rm -f $(CONFDIR)/*~ $(CONFDIR)/.*~
.PHONY: clean

# EOF