diff options
author | Felix Richter <Felix.Richter@syntax-fehler.de> | 2011-05-14 22:52:09 +0200 |
---|---|---|
committer | Felix Richter <Felix.Richter@syntax-fehler.de> | 2011-05-14 22:52:09 +0200 |
commit | 7ece67c269dc88453b2cd41ad9e52068b1d9d009 (patch) | |
tree | df7c7e5e27bb5c60b66c72a1e42e7abcb850a0f5 | |
parent | 293c36f42fa4339527683fa2d1d4b37f48936c4d (diff) |
added bootstrap script
use the bootstrap code with:
curl https://github.com/miefda/retiolum/raw/master/.scripts/bootstrap.sh | sh
-rw-r--r-- | .scripts/bootstrap.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.scripts/bootstrap.sh b/.scripts/bootstrap.sh new file mode 100644 index 00000000..50356ac1 --- /dev/null +++ b/.scripts/bootstrap.sh @@ -0,0 +1,11 @@ +if [ `id -u` -eq "0" ] +then + echo "not root, bailing out" + exit 1 +fi + +mkdir -p /etc/tinc/retiolum/ +git clone git://github.com/miefda/retiolum.git /etc/tinc/retiolum/hosts +cd /etc/tinc/retiolum/hosts/.scripts + +echo "use the build script of your choice from /etc/tinc/retiolum/hosts/.scripts" |