blob: 76b833f8ce0f1ca8b4be37b2cc29c60558c4cac7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
.phony: update install all
all: select-target
/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
|