index.cgi: Remove left-over DNSSEC status warning

Message ID 20211014132630.14073-1-michael.tremer@ipfire.org
State Accepted
Commit 637eb94684cb0029ca76bb67dda8a8d2c15560ab
Headers
Series index.cgi: Remove left-over DNSSEC status warning |

Commit Message

Michael Tremer Oct. 14, 2021, 1:26 p.m. UTC
  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 <michael.tremer@ipfire.org>
---
 config/cfgroot/general-functions.pl | 11 -----------
 html/cgi-bin/index.cgi              |  5 -----
 2 files changed, 16 deletions(-)
  

Patch

diff --git a/config/cfgroot/general-functions.pl b/config/cfgroot/general-functions.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;
 }
 
-sub dnssec_status() {
-	my $path = "${General::swroot}/red/dnssec-status";
-
-	open(STATUS, $path) or return 0;
-	my $status = <STATUS>;
-	close(STATUS);
-
-	chomp($status);
-
-	return $status;
-}
 sub number_cpu_cores() {
 	open my $cpuinfo, "/proc/cpuinfo" or die "Can't open cpuinfo: $!\n";
 	my $cores = 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();
 }
 
-my $dnssec_status = &General::dnssec_status();
-if ($dnssec_status eq "off") {
-	$warnmessage .= "<li>$Lang::tr{'dnssec disabled warning'}</li>";
-}
-
 # Fireinfo
 if ( ! -e "/var/ipfire/main/send_profile") {
 	$warnmessage .= "<li><a style='color: white;' href='fireinfo.cgi'>$Lang::tr{'fireinfo please enable'}</a></li>";