Files
webmin/servers/config_info.pl

16 lines
211 B
Perl
Executable File

use strict;
use warnings;
do 'servers-lib.pl';
our (%config, %text);
sub show_deftype
{
return ( $text{'config_typeauto'}, 4,
"-$text{'default'}",
map { $_->[0]."-".$_->[1] } &get_server_types() );
}
1;