From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter =?utf-8?q?M=C3=BCller?= To: development@lists.ipfire.org Subject: Re: [PATCH 4/7] pakfire.cgi: Notify user if Pakfire is already performing a task Date: Sun, 08 May 2022 13:12:16 +0000 Message-ID: In-Reply-To: <20220508120952.52-4-hofmann@leo-andres.de> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============7573361688335438024==" List-Id: --===============7573361688335438024== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Acked-by: Peter M=C3=BCller > Signed-off-by: Leo-Andres Hofmann > --- > html/cgi-bin/pakfire.cgi | 6 ++++-- > langs/de/cgi-bin/de.pl | 1 + > langs/en/cgi-bin/en.pl | 1 + > 3 files changed, 6 insertions(+), 2 deletions(-) >=20 > diff --git a/html/cgi-bin/pakfire.cgi b/html/cgi-bin/pakfire.cgi > index daa82e34c..ec3ee2cc6 100644 > --- a/html/cgi-bin/pakfire.cgi > +++ b/html/cgi-bin/pakfire.cgi > @@ -96,8 +96,10 @@ if($cgiparams{'ACTION'} eq 'json-getstatus') { > } > =20 > ### Process Pakfire install/update commands ### > -if(($cgiparams{'ACTION'} ne '') && (! &_is_pakfire_busy())) { > - if(($cgiparams{'ACTION'} eq 'install') && ($cgiparams{'FORCE'} eq 'on')) { > +if($cgiparams{'ACTION'} ne '') { > + if(&_is_pakfire_busy()) { > + $errormessage =3D $Lang::tr{'pakfire already busy'}; > + } elsif(($cgiparams{'ACTION'} eq 'install') && ($cgiparams{'FORCE'} eq 'o= n')) { > my @pkgs =3D split(/\|/, $cgiparams{'INSPAKS'}); > &General::system_background("/usr/local/bin/pakfire", "install", "--non-= interactive", "--no-colors", @pkgs); > } elsif(($cgiparams{'ACTION'} eq 'remove') && ($cgiparams{'FORCE'} eq 'on= ')) { > diff --git a/langs/de/cgi-bin/de.pl b/langs/de/cgi-bin/de.pl > index a841b39f9..7a39e233b 100644 > --- a/langs/de/cgi-bin/de.pl > +++ b/langs/de/cgi-bin/de.pl > @@ -1990,6 +1990,7 @@ > 'pagerefresh' =3D> 'Seite wird aktualisiert. Bitte warten.', > 'pakfire accept all' =3D> 'M=C3=B6chten Sie der Installation aller Pakete = zustimmen?', > 'pakfire ago' =3D> 'her.', > +'pakfire already busy' =3D> 'Pakfire f=C3=BChrt bereits eine Aufgabe aus. = Bitte versuchen Sie es sp=C3=A4ter erneut.', > 'pakfire available addons' =3D> 'Verf=C3=BCgbare Addons:', > 'pakfire configuration' =3D> 'Pakfire Konfiguration', > 'pakfire core update auto' =3D> 'Core- und Addon-Updates automatisch insta= llieren:', > diff --git a/langs/en/cgi-bin/en.pl b/langs/en/cgi-bin/en.pl > index e30ee4f69..f90e3103b 100644 > --- a/langs/en/cgi-bin/en.pl > +++ b/langs/en/cgi-bin/en.pl > @@ -2041,6 +2041,7 @@ > 'pagerefresh' =3D> 'Page is beeing refreshed, please wait.', > 'pakfire accept all' =3D> 'Do you want to install all packages?', > 'pakfire ago' =3D> 'ago.', > +'pakfire already busy' =3D> 'Pakfire is already performing a task. Please = try again later.', > 'pakfire available addons' =3D> 'Available Addons:', > 'pakfire configuration' =3D> 'Pakfire Configuration', > 'pakfire core update auto' =3D> 'Install core and addon updates automatica= lly:', --===============7573361688335438024==--