From: Jo-Philipp Wich Date: Fri, 5 Jun 2009 17:44:13 +0000 (+0000) Subject: modules/freifunk: there's a race-condition between splash and natfix during boot... X-Git-Tag: 0.9.0~268 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=177477ea96a2cfb0ac5236b8cb634e2780f44614 modules/freifunk: there's a race-condition between splash and natfix during boot which often prevents proper splash-whitelisting, delay splash-startup by three seconds --- diff --git a/modules/freifunk/root/etc/firewall.freifunk b/modules/freifunk/root/etc/firewall.freifunk index c70ac3a2a..d8590fa79 100644 --- a/modules/freifunk/root/etc/firewall.freifunk +++ b/modules/freifunk/root/etc/firewall.freifunk @@ -56,4 +56,4 @@ uci_set_state firewall core loaded 1 config_foreach fw_addif interface config_foreach apply_nat_fix interface -[ -x /etc/init.d/luci_splash ] && /etc/init.d/luci_splash start +[ -x /etc/init.d/luci_splash ] && ( sleep 3; /etc/init.d/luci_splash start )&