flm01/mote/v2/openwrt/package/luci/modules/freifunk/root/etc/init.d/freifunk

38 lines
968 B
Bash
Executable File

#!/bin/sh /etc/rc.common
# Freifunk Init
# $Id: freifunk 5529 2009-11-11 13:49:13Z jow $
START=99
boot() {
test -f /etc/crontabs/root || touch /etc/crontabs/root
grep -q 'killall -HUP dnsmasq' /etc/crontabs/root || {
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
}
grep -q '/usr/sbin/ff_olsr_watchdog' /etc/crontabs/root || {
echo "*/5 * * * * /usr/sbin/ff_olsr_watchdog" >> /etc/crontabs/root
}
grep -q '/usr/sbin/ff_rdate' /etc/crontabs/root || {
echo "0 */4 * * * /usr/sbin/ff_rdate" >> /etc/crontabs/root
}
grep -q '/usr/sbin/ff_mapupdate' /etc/crontabs/root || {
echo "17 * * * * /usr/sbin/ff_mapupdate" >> /etc/crontabs/root
}
[ -d /etc/rc.local.d ] && {
for file in /etc/rc.local.d/*; do
test -f "$file" && . "$file"
done
}
( /usr/sbin/ff_rdate; /etc/init.d/cron restart ) &
}