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 arne_f@ipfire.org Date: Sun Mar 3 09:05:35 2024 +0100
core185: add index.cgi to update
Signed-off-by: Arne Fitzenreiter arne_f@ipfire.org
commit d71c37a6329ceeed4657e28c4f51a138e55056dc Author: Arne Fitzenreiter arne_f@ipfire.org Date: Sun Mar 3 09:03:22 2024 +0100
index.cgi exclude efivarfs from disk free check
on some systems this filesystem is always reported as full so this is now excluded.
Signed-off-by: Arne Fitzenreiter arne_f@ipfire.org
-----------------------------------------------------------------------
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/core/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=(); my @df = `/bin/df -B M -P -x rootfs`; foreach my $line (@df) { next if $line =~ m/^Filesystem/; + next if $line =~ m/^efivarfs/; if ($line =~ m/root/ ) { $line =~ m/^.* (\d+)M.*$/; @temp = split(/ +/,$line);
hooks/post-receive -- IPFire 2.x development tree