summaryrefslogtreecommitdiffstats
path: root/btc/mining/bin/ensure-router
diff options
context:
space:
mode:
authorroot <root@krebs>2011-08-05 20:43:04 +0200
committerroot <root@krebs>2011-08-05 20:43:04 +0200
commitf5d5daf256e6b973a2f068eb9869016b4be507b9 (patch)
tree10e8301d85d57c9c0c6ffbeed58dee1035492a1b /btc/mining/bin/ensure-router
parent30a01f5a1d9d500b1215c0b6dc6dec4118f13d2a (diff)
parent3b450ecbe95918dbd7a0e542df3c9dc3eb9c643e (diff)
Merge branch 'master' of github.com:/krebscode/painload
Diffstat (limited to 'btc/mining/bin/ensure-router')
-rwxr-xr-xbtc/mining/bin/ensure-router11
1 files changed, 10 insertions, 1 deletions
diff --git a/btc/mining/bin/ensure-router b/btc/mining/bin/ensure-router
index ec78f610..5eedabc9 100755
--- a/btc/mining/bin/ensure-router
+++ b/btc/mining/bin/ensure-router
@@ -8,10 +8,19 @@ fi
if=eth2
+rc() {
+ for x in /etc/init.d/$1 /etc/rc.d/$1; do
+ if test -x $x; then
+ $x restart
+ break
+ fi
+ done
+}
+
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; rc 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