From ff6394d17bdaed9a522c2add967ffbd5574e68b7 Mon Sep 17 00:00:00 2001 From: tv Date: Fri, 5 Aug 2011 15:37:36 +0200 Subject: ensure-router: also try /etc/rc.d/* --- btc/mining/bin/ensure-router | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'btc/mining/bin') 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 -- cgit v1.2.3