From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arne Fitzenreiter To: ipfire-scm@lists.ipfire.org Subject: [git.ipfire.org] IPFire 2.x development tree branch, next, updated. 6ea7d8c67e0ea53188d6dc356b9cdbc5bf7b5d97 Date: Sun, 03 Mar 2024 08:39:40 +0000 Message-ID: <4TnZy50ZMHz2xg8@people01.haj.ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============5103231408070844028==" List-Id: --===============5103231408070844028== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree". The branch, next has been updated via 6ea7d8c67e0ea53188d6dc356b9cdbc5bf7b5d97 (commit) via d71c37a6329ceeed4657e28c4f51a138e55056dc (commit) from 6dd7451f11385e984b2d24afff99360919f2d3a9 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 6ea7d8c67e0ea53188d6dc356b9cdbc5bf7b5d97 Author: Arne Fitzenreiter Date: Sun Mar 3 09:05:35 2024 +0100 core185: add index.cgi to update =20 Signed-off-by: Arne Fitzenreiter commit d71c37a6329ceeed4657e28c4f51a138e55056dc Author: Arne Fitzenreiter Date: Sun Mar 3 09:03:22 2024 +0100 index.cgi exclude efivarfs from disk free check =20 on some systems this filesystem is always reported as full so this is now excluded. =20 Signed-off-by: Arne Fitzenreiter ----------------------------------------------------------------------- Summary of changes: config/rootfiles/core/185/filelists/files | 1 + html/cgi-bin/index.cgi | 1 + 2 files changed, 2 insertions(+) Difference in files: diff --git a/config/rootfiles/core/185/filelists/files b/config/rootfiles/cor= e/185/filelists/files index aa37655cf..d87f36529 100644 --- a/config/rootfiles/core/185/filelists/files +++ b/config/rootfiles/core/185/filelists/files @@ -46,5 +46,6 @@ lib/firmware/nvidia/tegra186/vic.bin lib/firmware/nvidia/tegra210/vic.bin srv/web/ipfire/cgi-bin/dhcp.cgi srv/web/ipfire/cgi-bin/dns.cgi +srv/web/ipfire/cgi-bin/index.cgi srv/web/ipfire/cgi-bin/ovpnmain.cgi var/ipfire/backup/bin/backup.pl diff --git a/html/cgi-bin/index.cgi b/html/cgi-bin/index.cgi index 65773244c..5e32ce038 100644 --- a/html/cgi-bin/index.cgi +++ b/html/cgi-bin/index.cgi @@ -564,6 +564,7 @@ my $temp2=3D(); my @df =3D `/bin/df -B M -P -x rootfs`; foreach my $line (@df) { next if $line =3D~ m/^Filesystem/; + next if $line =3D~ m/^efivarfs/; if ($line =3D~ m/root/ ) { $line =3D~ m/^.* (\d+)M.*$/; @temp =3D split(/ +/,$line); hooks/post-receive -- IPFire 2.x development tree --===============5103231408070844028==--