From: Jo-Philipp Wich Date: Fri, 15 May 2009 14:24:22 +0000 (+0000) Subject: modules/freifunk: duplicate olsr watchdog interval X-Git-Tag: 0.9.0~449 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=82b15b30abd1ed278550bdeb38168462d0b91674 modules/freifunk: duplicate olsr watchdog interval --- diff --git a/modules/freifunk/root/usr/sbin/ff_olsr_watchdog b/modules/freifunk/root/usr/sbin/ff_olsr_watchdog index 2b4fabed1..3e5258d9b 100755 --- a/modules/freifunk/root/usr/sbin/ff_olsr_watchdog +++ b/modules/freifunk/root/usr/sbin/ff_olsr_watchdog @@ -21,7 +21,7 @@ if posix.access("/var/run/olsrd.pid") then local systime = os.time() local wdgtime = tonumber(io.lines(stamp)()) - if not wdgtime or ( systime - wdgtime ) > intv then + if not wdgtime or ( systime - wdgtime ) > ( intv * 2 ) then os.execute("logger -t 'OLSR watchdog' 'Process died - restarting!'") os.execute("/etc/init.d/olsrd restart") end