mirror of
https://github.com/webmin/webmin.git
synced 2026-02-09 16:52:19 +00:00
20 lines
349 B
Raku
20 lines
349 B
Raku
|
|
do 'bind8-lib.pl';
|
|
|
|
sub list_system_info
|
|
{
|
|
my ($data, $in) = @_;
|
|
my @rv;
|
|
if (&foreign_available($module_name) && $access{'defaults'}) {
|
|
my $err = &check_dnssec_client();
|
|
if ($err) {
|
|
push(@rv, { 'type' => 'html',
|
|
'open' => 1,
|
|
'id' => $module_name.'_dnssec',
|
|
'priority' => 100,
|
|
'html' => $err });
|
|
}
|
|
}
|
|
return @rv;
|
|
}
|