modules/freifunk:

- install cronjob for gateway check
	- provide /etc/rc.local.d/ as suggested by ufo
This commit is contained in:
Jo-Philipp Wich 2009-01-30 16:05:14 +00:00
parent 07790dad35
commit fb581efd7d

View file

@ -9,5 +9,14 @@ boot() {
echo "*/5 * * * * killall -HUP dnsmasq" >> /etc/crontabs/root
}
grep -q '/usr/sbin/ff_olsr_test_gw' /etc/crontabs/root || {
echo "* * * * * /usr/sbin/ff_olsr_test_gw" >> /etc/crontabs/root
}
[ -f /etc/rc.local ] && . /etc/rc.local
[ -d /etc/rc.local.d ] && {
for file in /etc/rc.local.d/*; do
test -f "$file" && . "$file"
done
}
}