summaryrefslogtreecommitdiffstats
path: root/mining/bin
diff options
context:
space:
mode:
authortv <tv@also>2011-08-05 15:37:36 +0200
committertv <tv@also>2011-08-05 15:37:36 +0200
commita3a68df2e0b3c30eeb3ec7d9e8dbfb1e28e7613f (patch)
tree03fb41c0102b50567317477712a4588581868d75 /mining/bin
parent6c435ec35b7c99896d31fdce41170b3889f72162 (diff)
ensure-router: also try /etc/rc.d/*
Diffstat (limited to 'mining/bin')
-rwxr-xr-xmining/bin/ensure-router11
1 files changed, 10 insertions, 1 deletions
diff --git a/mining/bin/ensure-router b/mining/bin/ensure-router
index ec78f610..5eedabc9 100755
--- a/mining/bin/ensure-router
+++ b/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