61bd58055b4fe6d24ec493b117c728d82e6c3c50
[project/luci.git] / modules / freifunk / root / etc / init.d / freifunk
1 #!/bin/sh /etc/rc.common
2 # Freifunk Init
3 # $Id$
4
5 START=99
6
7 boot() {
8         grep -q 'killall -HUP dnsmasq' /etc/crontabs/root || {
9                 echo "*/5 * * * *       killall -HUP dnsmasq" >> /etc/crontabs/root
10         }
11
12         grep -q '/usr/sbin/ff_olsr_test_gw' /etc/crontabs/root || {
13                 echo "* * * * *         /usr/sbin/ff_olsr_test_gw" >> /etc/crontabs/root
14         }
15
16         [ -f /etc/rc.local ] && . /etc/rc.local
17         [ -d /etc/rc.local.d ] && {
18                 for file in /etc/rc.local.d/*; do
19                         test -f "$file" && . "$file"
20                 done
21         }
22
23         killall -HUP crond 2>/dev/null || /etc/init.d/cron start
24 }