blob: c1ebfe376dd7539860869df65ff0114ac22a40ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
.phony: update it all so install
all: select-target
it: so
so: it
/etc/tinc/retiolum/hosts:
cd $(dir $@) && git clone https://github.com/krebscode/hosts
update: /etc/tinc/retiolum/hosts
cd $< && git pull
install:
curl -k https://github.com/miefda/retiolum/raw/master/.scripts/tinc_setup/bootstrap.sh | sh
|