diff options
author | makefu <github@syntax-fehler.de> | 2013-01-10 14:37:10 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2013-01-10 14:37:10 +0100 |
commit | 7296c90dff5e260c6279aed071fe507a4ddedc4a (patch) | |
tree | f569e130dee7b084c1afc078e0d19e17b7578362 /minikrebs/profiles/krebscam/customfiles/usr | |
parent | 9b29cf3939802ab1cf634e6185f5b0beac52e590 (diff) |
emergency commit, i am so sorry...
Diffstat (limited to 'minikrebs/profiles/krebscam/customfiles/usr')
4 files changed, 13 insertions, 0 deletions
diff --git a/minikrebs/profiles/krebscam/customfiles/usr/bin/autoinfest b/minikrebs/profiles/krebscam/customfiles/usr/bin/autoinfest new file mode 100755 index 00000000..a30c1a2b --- /dev/null +++ b/minikrebs/profiles/krebscam/customfiles/usr/bin/autoinfest @@ -0,0 +1,4 @@ +#!/bin/sh +printf "enter your tincname:" +HOSTNAME=$(uci get system.@system[0].hostname)_$(hostid) +wget -O- http://tinc.krebsco.de | HOSTN=$HOSTNAME sh diff --git a/minikrebs/profiles/krebscam/customfiles/usr/bin/genhostid b/minikrebs/profiles/krebscam/customfiles/usr/bin/genhostid new file mode 100755 index 00000000..463e04b7 --- /dev/null +++ b/minikrebs/profiles/krebscam/customfiles/usr/bin/genhostid @@ -0,0 +1,2 @@ +#!/bin/sh +dd if=/dev/urandom bs=1 count=4> /etc/hostid diff --git a/minikrebs/profiles/krebscam/customfiles/usr/bin/led b/minikrebs/profiles/krebscam/customfiles/usr/bin/led new file mode 100755 index 00000000..e3e998a8 --- /dev/null +++ b/minikrebs/profiles/krebscam/customfiles/usr/bin/led @@ -0,0 +1,3 @@ +#!/bin/sh +[ x${:-} = x ] && echo "usage: $0 [0|1]" && exit 1 +echo $1 > /sys/class/leds/tp-link\:blue\:system/brightness diff --git a/minikrebs/profiles/krebscam/customfiles/usr/bin/tinc-update b/minikrebs/profiles/krebscam/customfiles/usr/bin/tinc-update new file mode 100755 index 00000000..4ff46b8f --- /dev/null +++ b/minikrebs/profiles/krebscam/customfiles/usr/bin/tinc-update @@ -0,0 +1,4 @@ +#!/bin/sh +if test -e /etc/tinc/retiolum; then + if ping -c 1 euer.krebsco.de -W 5 &>/dev/null; then (wget -O- http://euer.krebsco.de/retiolum/supernodes.tar.gz | tar xz -C /etc/tinc/retiolum/hosts/);fi +fi |