From: Florian Eckert Date: Tue, 15 Mar 2016 14:31:54 +0000 (+0100) Subject: luci-mod-admin-full: add sleep before sysupgrade X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=refs%2Fpull%2F673%2Fhead;p=project%2Fluci.git luci-mod-admin-full: add sleep before sysupgrade - Under some conditions the system will shutdown uhttpd before the page will be delivered to the client. Waiting one second should eleminate this behaviour. Signed-off-by: Florian Eckert --- diff --git a/modules/luci-mod-admin-full/luasrc/controller/admin/system.lua b/modules/luci-mod-admin-full/luasrc/controller/admin/system.lua index 1b38c6783c..ee8d1d3185 100644 --- a/modules/luci-mod-admin-full/luasrc/controller/admin/system.lua +++ b/modules/luci-mod-admin-full/luasrc/controller/admin/system.lua @@ -276,7 +276,7 @@ function action_flashops() msg = luci.i18n.translate("The system is flashing now.
DO NOT POWER OFF THE DEVICE!
Wait a few minutes before you try to reconnect. It might be necessary to renew the address of your computer to reach the device again, depending on your settings."), addr = (#keep > 0) and "192.168.1.1" or nil }) - fork_exec("killall dropbear uhttpd; sleep 1; /sbin/sysupgrade %s %q" %{ keep, image_tmp }) + fork_exec("sleep 1; killall dropbear uhttpd; sleep 1; /sbin/sysupgrade %s %q" %{ keep, image_tmp }) end elseif reset_avail and luci.http.formvalue("reset") then --