| Server IP : 173.209.174.21 / Your IP : 216.73.216.89 Web Server : Apache/2.4.58 (Ubuntu) System : Linux wcfs-server 6.8.0-124-generic #124-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 13:00:45 UTC 2026 x86_64 User : nodor ( 1000) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/share/webmin/bind8/ |
Upload File : |
do 'bind8-lib.pl';
sub list_system_info
{
my ($data, $in) = @_;
my @rv;
if (&foreign_available($module_name) && $access{'defaults'} &&
$config{'dnssec_info'}) {
# Show DNSSEC client config errors
my $err = &check_dnssec_client();
if ($err) {
push(@rv, { 'type' => 'warning',
'level' => 'warn',
'warning' => $err });
}
}
if (&foreign_available($module_name) && !$access{'noconfig'} &&
$config{'dnssec_info'}) {
# Show DNSSEC expired domains
my @exps = &list_dnssec_expired_domains();
if (@exps) {
my @doms = map { $_->{'name'}." (".&make_date($_->{'expiry'}, 1).")" } @exps;
my $msg = &text('index_eexpired', join(", ", @doms))."<p>\n";
my $job = &get_dnssec_cron_job();
if (!$job) {
$msg .= &text('index_eexpired_conf',
&ui_link(&get_webprefix()."/$module_name/conf_dnssec.cgi",
$text{'dnssec_title'}));
}
else {
$msg .= &text('index_eexpired_mod',
&ui_link(&get_webprefix()."/$module_name/",
$text{'index_title'}));
}
push(@rv, { 'type' => 'warning',
'level' => 'danger',
'warning' => $msg });
}
}
return @rv;
}