blob: 8301c926249020737ed21f86d983057c8d860b3e (
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
|
.PHONY: update all install hosts
EXES := update_tinc_hosts fillxx update-retiolum-hosts
all: update links
links:
for x in $(EXES); do ln -vsnf ../retiolum/bin/$$x ../bin; done
hosts:
bin/update-retiolum-hosts || true
install: update
../punani/bin/punani -Eih tinc /usr/bin/python /usr/bin/python2
scripts/tinc_setup/install.sh
cp scripts/tinc_setup/tinc-up /etc/tinc/retiolum/tinc-up
scripts/autostart/create-startup.sh
update: hosts
bin/update_tinc_hosts "create magic" || true
bin/update_tinc_hosts restart
if ! diff -u scripts/tinc_setup/tinc-up /etc/tinc/retiolum/tinc-up; then \
sudo cp scripts/tinc_setup/tinc-up /etc/tinc/retiolum/tinc-up; \
sudo bin/restart-tincd; \
else \
sudo pkill -HUP tincd || :; \
sudo pkill -ALRM tincd || :; \
fi
arch-install: update install arch-autostart autohosts
arch-autostart:
make -C scripts/autostart arch || true
|