From: Jo-Philipp Wich Date: Sun, 25 Jan 2009 20:24:27 +0000 (+0000) Subject: modules/freifunk: fix cronjob installation X-Git-Tag: 0.9.0~729 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=2ea584beaff7cc132f1bc05f477bccc4505373c2;hp=950ab853eab2ae0a116d4d2390e46a58c9f5ad42 modules/freifunk: fix cronjob installation --- diff --git a/modules/freifunk/root/etc/init.d/freifunk b/modules/freifunk/root/etc/init.d/freifunk index b7a1f90eb..799676fe9 100755 --- a/modules/freifunk/root/etc/init.d/freifunk +++ b/modules/freifunk/root/etc/init.d/freifunk @@ -5,7 +5,9 @@ START=99 boot() { - echo "*/5 * * * * killall -HUP dnsmasq" >> /etc/crontabs/root + grep -q 'killall -HUP dnsmasq' /etc/crontabs/root || { + echo "*/5 * * * * killall -HUP dnsmasq" >> /etc/crontabs/root + } [ -f /etc/rc.local ] && . /etc/rc.local }