From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH] index.cgi: Remove left-over DNSSEC status warning Date: Thu, 14 Oct 2021 13:26:30 +0000 Message-ID: <20211014132630.14073-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6244639004023744593==" List-Id: --===============6244639004023744593== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable An error message is still shown although there is no option to disable DNSSEC at the moment. The old marker file could still be present on older machines. Signed-off-by: Michael Tremer --- config/cfgroot/general-functions.pl | 11 ----------- html/cgi-bin/index.cgi | 5 ----- 2 files changed, 16 deletions(-) diff --git a/config/cfgroot/general-functions.pl b/config/cfgroot/general-fun= ctions.pl index de608e38b..f72d6588c 100644 --- a/config/cfgroot/general-functions.pl +++ b/config/cfgroot/general-functions.pl @@ -1238,17 +1238,6 @@ sub get_red_interface() { return $interface; } =20 -sub dnssec_status() { - my $path =3D "${General::swroot}/red/dnssec-status"; - - open(STATUS, $path) or return 0; - my $status =3D ; - close(STATUS); - - chomp($status); - - return $status; -} sub number_cpu_cores() { open my $cpuinfo, "/proc/cpuinfo" or die "Can't open cpuinfo: $!\n"; my $cores =3D scalar (map /^processor/, <$cpuinfo>); diff --git a/html/cgi-bin/index.cgi b/html/cgi-bin/index.cgi index fafbe0aa1..948fdde55 100644 --- a/html/cgi-bin/index.cgi +++ b/html/cgi-bin/index.cgi @@ -536,11 +536,6 @@ END &Header::closebox(); } =20 -my $dnssec_status =3D &General::dnssec_status(); -if ($dnssec_status eq "off") { - $warnmessage .=3D "
  • $Lang::tr{'dnssec disabled warning'}
  • "; -} - # Fireinfo if ( ! -e "/var/ipfire/main/send_profile") { $warnmessage .=3D "
  • $La= ng::tr{'fireinfo please enable'}
  • "; --=20 2.20.1 --===============6244639004023744593==--