%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.248 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON 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; }