]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - config/cfgroot/general-functions.pl
index.cgi: Remove left-over DNSSEC status warning
[people/pmueller/ipfire-2.x.git] / config / cfgroot / general-functions.pl
index de608e38b8f8f5827e6ffe40ad5b196028947b38..f72d6588cf1358f4bc7fc0ab7402efed9420b187 100644 (file)
@@ -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>);