blob: 4ee3bf74101ec3d42efb86e75d9b1bfa29b71105 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
DIST_TEST ?= fskyweb@rsync.gigo.com:test/mtu1280d
DIST_STABLE ?= fskyweb@rsync.gigo.com:stable/mtu1280d
help:
@echo "make mtu1280d - just build binary"
@echo "make install - installs to /usr/sbin/mtu1280d"
@echo "make upstart - installs, including /etc/init/ script"
@echo "make init.d - installs, including /etc/init.d/ and runs chkconfig"
@echo "make systemd - installs using systemd"
@test -d /lib/systemd/system/ && echo "RECOMMENDATION: make systemd (we found /lib/systemd/system/)" || true
@test -d /etc/init && test ! -d /lib/systemd/system/ && echo "RECOMMENDATION: make upstart (we found /etc/init)" || true
@test ! -d /etc/init && test ! -d /lib/systemd/system/ && echo "RECOMMENDATION: make init.d (we did not find /etc/init)" || true
mtu1280d: mtu1280d.c
gcc -o mtu1280d mtu1280d.c -lnetfilter_queue || ( echo "see README.md for prerequisites" && exit 1 )
test: mtu1280d
sudo ./mtu1280d -g
clean:
rm -f mtu1280d
install: mtu1280d
sudo /usr/bin/install -c mtu1280d /usr/sbin/
upstart: install
@echo Checking to see if your system uses upstart
test -d /etc/init/
/usr/bin/install -c upstart/mtu1280d.conf /etc/init/
@echo "Reminder - start the daemon or reboot; then update your ip6tables."
@echo "See the README.md file."
init.d: install
/usr/bin/install -c init.d/mtu1280d /etc/init.d/
test -x /usr/sbin/update-rc.d && update-rc.d mtu1280d defaults && update-rc.d mtu1280d enable || true
@echo "Reminder - start the daemon or reboot; then update your ip6tables."
@echo "See the README.md file."
systemd: install
sudo cp systemd/mtu1280d.service /lib/systemd/system/mtu1280d.service
-sudo systemctl disable mtu1280d.service
sudo systemctl enable mtu1280d.service
sudo systemctl restart mtu1280d.service
################################################################
# Removing? Check ip6tables first #
################################################################
pre-remove:
@echo Checking ip6tables to make sure you no longer use NFQUEUE
@ip6tables-save | grep NFQUEUE && echo "NFQUEUE rulee still active in ip6tables" || true
@ip6tables-save | grep "NFQUEUE" >/dev/null ; [ $$? -eq 1 ]
@echo safe to remove
force-remove:
@echo "Removing any previous installation (including startup scripts) of mtu1280d"
rm -fr /usr/sbin/mtu1280d /etc/init/mtu1280d.conf /etc/init.d/mtu1280d
rm -fr /etc/rc*/*mtu1280d* /etc/rc.d/init.d/mtu1280d
remove: pre-remove force-remove
################################################################
# Publishing #
################################################################
dist-template:
rsync * $(DIST_DESTINATION)/. -a --delete -z --exclude "*~"
dist-test:
make dist-template DIST_DESTINATION=$(DIST_TEST)
dist-stable:
make dist-template DIST_DESTINATION=$(DIST_STABLE)
dist: dist-stable
|