diff options
author | Manuel Munz <freifunk@somakoma.de> | 2011-11-13 13:45:17 +0000 |
---|---|---|
committer | Manuel Munz <freifunk@somakoma.de> | 2011-11-13 13:45:17 +0000 |
commit | 256daa259bcfb7f1b38bf9c6b2959a0aaa239b1c (patch) | |
tree | e49ff53386ba5830e0d883b141b6fb9640e5b253 /contrib/package/freifunk-gwcheck/root | |
parent | 32be6cea9305168b303d1e54ec3e658826725ef2 (diff) |
contrib/freifunk-gwcheck: Some fixes suggested by Patrick grimm
Diffstat (limited to 'contrib/package/freifunk-gwcheck/root')
-rw-r--r-- | contrib/package/freifunk-gwcheck/root/etc/uci-defaults/freifunk-gwcheck | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/package/freifunk-gwcheck/root/etc/uci-defaults/freifunk-gwcheck b/contrib/package/freifunk-gwcheck/root/etc/uci-defaults/freifunk-gwcheck index e04faa562..33b1b99df 100644 --- a/contrib/package/freifunk-gwcheck/root/etc/uci-defaults/freifunk-gwcheck +++ b/contrib/package/freifunk-gwcheck/root/etc/uci-defaults/freifunk-gwcheck @@ -1,5 +1,6 @@ #!/bin/sh tables="/etc/iproute2/rt_tables" +test -d /etc/iproute2/ || mkdir -p /etc/iproute2/ grep -q "gw-check" $tables || echo "200 gw-check" >> $tables test -f /etc/crontabs/root || touch /etc/crontabs/root grep -q "ff_olsr_test_gw.sh" /etc/crontabs/root || echo "* * * * * /usr/sbin/ff_olsr_test_gw.sh" >> /etc/crontabs/root |