blob: b3a3c1246c5ac6541109f996f4083599ea308c51 (
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
  | 
.PHONY: update all install hosts
EXES := update_tinc_hosts fillxx update-retiolum-hosts
all: update links 
links:
	for x in $(EXES); do ln -snf ../retiolum/bin/$$x ../bin; done
install: upgrade
	../punani/bin/punani install tinc python
	scripts/tinc_setup/install.sh
	sudo cp scripts/tinc_setup/tinc-up /etc/tinc/retiolum/tinc-up
upgrade: update
	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 || :; \
	fi
update: hosts
	bin/update_tinc_hosts "create magic" || :;
	bin/update_tinc_hosts restart
	sudo pkill -HUP tincd || :; 
startup:
	scripts/autostart/create-startup.sh
hosts:
	bin/update-retiolum-hosts || :;
	sudo bin/patch-retiolum-hosts
  |