This file is indexed.

/etc/shorewall6-lite/Makefile is in shorewall6-lite 5.0.4-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
# Shorewall6 Lite Makefile to restart if firewall script is newer than last restart
VARDIR=$(shell /sbin/shorewall6-lite show vardir)
SHAREDIR=/usr/share/shorewall6-lite
RESTOREFILE?=.restore

all: $(VARDIR)/$(RESTOREFILE)

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

# EOF