| Server IP : 172.67.134.114 / Your IP : 162.159.115.41 Web Server : Apache/2.4.37 System : Linux almalinux.duckdns.org 4.18.0-553.111.1.el8_10.x86_64 #1 SMP Sun Mar 8 20:06:07 EDT 2026 x86_64 User : ricodeal ( 1046) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/libexec/webmin/syslog-ng/ |
Upload File : |
#!/usr/bin/perl
# Show a list of log sources
require './syslog-ng-lib.pl';
&ui_print_header(undef, $text{'sources_title'}, "", "sources");
$conf = &get_config();
@sources = &find("source", $conf);
@links = ( &select_all_link("d"),
&select_invert_link("d"),
&ui_link("edit_source.cgi?new=1",$text{'sources_add'}) );
if (@sources) {
@tds = ( "width=5" );
print &ui_form_start("delete_sources.cgi", "post");
print &ui_links_row(\@links);
print &ui_columns_start([ "",
$text{'sources_source'},
$text{'sources_desc'},
], undef, 0, \@tds);
foreach $f (@sources) {
$desc = &nice_source_desc($f);
print &ui_checked_columns_row([
&ui_link("edit_source.cgi?name=$f->{'value'}",$f->{'value'}),
$desc || "<i>$text{'sources_none2'}</i>",
], \@tds, "d", $f->{'value'});
}
print &ui_columns_end();
print &ui_links_row(\@links);
print &ui_form_end([ [ "delete", $text{'sources_delete'} ] ]);
}
else {
print "<b>$text{'sources_none'}</b><p>\n";
print &ui_links_row([ $links[2] ]);
}
&ui_print_footer("", $text{'index_return'});