diff options
author | makefu <github@syntax-fehler.de> | 2013-03-07 11:40:38 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2013-03-07 11:40:38 +0100 |
commit | 7fa8fb85b072f612adb322f8a02617e1bd737020 (patch) | |
tree | 683df8268baae71451633518aa7ff7ea258a4aa8 /minikrebs/profiles/nfc-login/customfiles/usr/bin | |
parent | dbe2d838ba6834788265029162b2dd7d82473335 (diff) | |
parent | ef4eb3189363f5cd9a33b43693322a68d3142979 (diff) |
Merge branch 'master' of github.com:krebscode/painload
Diffstat (limited to 'minikrebs/profiles/nfc-login/customfiles/usr/bin')
5 files changed, 0 insertions, 47 deletions
diff --git a/minikrebs/profiles/nfc-login/customfiles/usr/bin/autoinfest b/minikrebs/profiles/nfc-login/customfiles/usr/bin/autoinfest deleted file mode 100755 index a30c1a2b..00000000 --- a/minikrebs/profiles/nfc-login/customfiles/usr/bin/autoinfest +++ /dev/null @@ -1,4 +0,0 @@ -#!/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/nfc-login/customfiles/usr/bin/genhostid b/minikrebs/profiles/nfc-login/customfiles/usr/bin/genhostid deleted file mode 100755 index 463e04b7..00000000 --- a/minikrebs/profiles/nfc-login/customfiles/usr/bin/genhostid +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -dd if=/dev/urandom bs=1 count=4> /etc/hostid diff --git a/minikrebs/profiles/nfc-login/customfiles/usr/bin/led b/minikrebs/profiles/nfc-login/customfiles/usr/bin/led deleted file mode 100755 index e3e998a8..00000000 --- a/minikrebs/profiles/nfc-login/customfiles/usr/bin/led +++ /dev/null @@ -1,3 +0,0 @@ -#!/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/nfc-login/customfiles/usr/bin/login-manager b/minikrebs/profiles/nfc-login/customfiles/usr/bin/login-manager deleted file mode 100755 index 63f35c74..00000000 --- a/minikrebs/profiles/nfc-login/customfiles/usr/bin/login-manager +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh -#!/bin/sh -#LOGIN_HOST=heidi.shack -#LOGIN_HOST=heidi:5000 -LOGIN_HOST=10.42.10.38:5000 -all_led(){ - for i in 3g wlan lan wps;do - led $i $1 - done -} -led(){ - LED="$1" - ACTION="$2" - echo $ACTION > /sys/class/leds/tp-link:green:$LED/trigger -} -while sleep 1; do - uid=$(nfc-list | grep UID | cut -d: -f 2 | sed 's/ //g') - if ! [ x"$uid" = x ];then - online=$(wget -O- http://$LOGIN_HOST/user/$uid/online 2>/dev/null) - if [ x"$online" = "x" ];then - led lan timer - elif [ "$online" = "false" ];then - action="login" - led 3g timer - else - action="logout" - led wlan timer - fi - wget -O- http://$LOGIN_HOST/user/$uid/$action &>/dev/null - echo $uid $action - sleep 5 - all_led none - fi -done diff --git a/minikrebs/profiles/nfc-login/customfiles/usr/bin/tinc-update b/minikrebs/profiles/nfc-login/customfiles/usr/bin/tinc-update deleted file mode 100755 index 4ff46b8f..00000000 --- a/minikrebs/profiles/nfc-login/customfiles/usr/bin/tinc-update +++ /dev/null @@ -1,4 +0,0 @@ -#!/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 |