diff options
author | root <root@chinaman.(none)> | 2011-07-08 17:24:48 +0200 |
---|---|---|
committer | root <root@chinaman.(none)> | 2011-07-08 17:24:48 +0200 |
commit | 2f791c20ae45e7030c1b27d65f69186309a8ef8c (patch) | |
tree | 51a75164913e4d2caa424a5c7f118e12e31b1c45 /btc/mining/user/bin/ensure-router | |
parent | efc72df0e8a8115741e60bffed6e5854a43b5b38 (diff) |
mining: added archlinux cruise control
mining/Makefile: added archlinux cruise control (auto installer) which always does the right thing.
loosely after http://rubyists.github.com/2011/06/08/how-to-build-a-namecoin-or-bitcoin-miner-in98-easy-steps.html
mining/{user/,}/bin:renamed
mining/bin/newkey.sh: add policy Xorg keygen
Diffstat (limited to 'btc/mining/user/bin/ensure-router')
-rwxr-xr-x | btc/mining/user/bin/ensure-router | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/btc/mining/user/bin/ensure-router b/btc/mining/user/bin/ensure-router deleted file mode 100755 index ec78f610..00000000 --- a/btc/mining/user/bin/ensure-router +++ /dev/null @@ -1,27 +0,0 @@ -#! /bin/sh - -if test "${nosudo-false}" != true -a `id -u` != 0; then - echo "we're going sudo..." >&2 - exec sudo "$0" "$@" - exit 23 # go to hell -fi - -if=eth2 - -if ! ifconfig $if | grep -q 'inet addr'; then - beep -l 50 -f 2500; ifconfig $if 0.0.0.0 down || : - beep -l 50 -f 2500; ifconfig $if 23.0.0.1/8 up || : - beep -l 50 -f 2500; /etc/init.d/dnsmasq restart - beep -l 50 -f 2500; iptables -t nat -A POSTROUTING -o wlan0 -j MASQUERADE - beep -l 50 -f 2500; iptables -t nat -A POSTROUTING -o eth2 -j MASQUERADE - if ifconfig $if | grep -q 'inet addr'; then - beep -l 50 -f 2500 -n -l 100 -f 3000 - else - beep -l 50 -f 2500 -n -l 100 -f 1000 - fi -else - case "${1-}" in - (--quiet) : ;; - (*) beep -l 50 -f 2500 -n -l 100 -f 2500 ;; - esac -fi |