From: Michael Tremer Date: Fri, 9 Jul 2021 13:19:08 +0000 (+0000) Subject: pakfire.cgi: Sleep after running a pakfire command X-Git-Tag: v2.25-core158~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6f15b0cbe0765cc9be1b133a070325998bf28f77;p=ipfire-2.x.git pakfire.cgi: Sleep after running a pakfire command This is required to have better chances in the race of showing the log output afterwards. Signed-off-by: Michael Tremer --- diff --git a/html/cgi-bin/pakfire.cgi b/html/cgi-bin/pakfire.cgi index 42044b61d7..0cf522ba13 100644 --- a/html/cgi-bin/pakfire.cgi +++ b/html/cgi-bin/pakfire.cgi @@ -58,6 +58,7 @@ if (($cgiparams{'ACTION'} eq 'install') && (! -e $Pakfire::lockfile)) { my @pkgs = split(/\|/, $cgiparams{'INSPAKS'}); if ("$cgiparams{'FORCE'}" eq "on") { &General::system_background("/usr/local/bin/pakfire", "install", "--non-interactive", "--no-colors", @pkgs); + sleep(2); } else { &Header::openbox("100%", "center", $Lang::tr{'request'}); my @output = &General::system_output("/usr/local/bin/pakfire", "resolvedeps", "--no-colors", @pkgs); @@ -95,6 +96,7 @@ END my @pkgs = split(/\|/, $cgiparams{'DELPAKS'}); if ("$cgiparams{'FORCE'}" eq "on") { &General::system_background("/usr/local/bin/pakfire", "remove", "--non-interactive", "--no-colors", @pkgs); + sleep(2); } else { &Header::openbox("100%", "center", $Lang::tr{'request'}); my @output = &General::system_output("/usr/local/bin/pakfire", "resolvedeps", "--no-colors", @pkgs);