diff options
| author | user <user@bergwerk> | 2011-07-08 05:41:00 +0000 | 
|---|---|---|
| committer | user <user@bergwerk> | 2011-07-08 05:41:00 +0000 | 
| commit | 7deefeb09ce2f188bff67f432078caa255543ff5 (patch) | |
| tree | c7184375ef1bc9868248ebf11d80bfafab4fd361 /btc | |
| parent | 51e02c6852370f9175a264133ef3434470b187ec (diff) | |
add mining/user/bin/ensure-router
Diffstat (limited to 'btc')
| -rwxr-xr-x | btc/mining/user/bin/ensure-router | 25 | 
1 files changed, 25 insertions, 0 deletions
| diff --git a/btc/mining/user/bin/ensure-router b/btc/mining/user/bin/ensure-router new file mode 100755 index 00000000..987ed5b1 --- /dev/null +++ b/btc/mining/user/bin/ensure-router @@ -0,0 +1,25 @@ +#! /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 +  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 | 
