mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-09 18:45:54 +02:00
index.cgi: Remove left-over DNSSEC status warning
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> Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
This commit is contained in:
committed by
Arne Fitzenreiter
parent
0165dd4025
commit
637eb94684
@@ -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>);
|
||||
|
||||
@@ -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>";
|
||||
|
||||
Reference in New Issue
Block a user