From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo-Andres Hofmann To: development@lists.ipfire.org Subject: [PATCH 6/7] pakfire.cgi: Discard tac stderr output Date: Sun, 08 May 2022 14:09:51 +0200 Message-ID: <20220508120952.52-6-hofmann@leo-andres.de> In-Reply-To: <20220508120952.52-1-hofmann@leo-andres.de> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============8181858048968742956==" List-Id: --===============8181858048968742956== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Prevents meaningless "broken pipe" messages in the httpd error log. Signed-off-by: Leo-Andres Hofmann --- html/cgi-bin/pakfire.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/cgi-bin/pakfire.cgi b/html/cgi-bin/pakfire.cgi index 6fade81bd..489b07a6d 100644 --- a/html/cgi-bin/pakfire.cgi +++ b/html/cgi-bin/pakfire.cgi @@ -75,7 +75,7 @@ if($cgiparams{'ACTION'} eq 'json-getstatus') { =20 # Read /var/log/messages backwards until a "Pakfire started" header is foun= d, # to capture all messages of the last (i.e. current) Pakfire run - my @messages =3D `tac /var/log/messages | sed -n '/pakfire:/{p;/Pakfire.*st= arted/q}'`; + my @messages =3D `tac /var/log/messages 2>/dev/null | sed -n '/pakfire:/{p;= /Pakfire.*started/q}'`; =20 # Test if the log contains an error message (fastest implementation, stops = at first match) my $failure =3D any{ index($_, 'ERROR') !=3D -1 } @messages; --=20 2.27.0.windows.1 --===============8181858048968742956==--