mirror of
https://github.com/webmin/webmin.git
synced 2025-07-21 23:40:34 +00:00
18 lines
263 B
Perl
Executable File
18 lines
263 B
Perl
Executable File
|
|
use strict;
|
|
use warnings;
|
|
no warnings 'redefine';
|
|
no warnings 'uninitialized';
|
|
do 'servers-lib.pl';
|
|
our (%config, %text);
|
|
|
|
sub show_deftype
|
|
{
|
|
return ( $text{'config_deftype'}, 4,
|
|
"-$text{'default'}",
|
|
map { $_->[0]."-".$_->[1] } &get_server_types() );
|
|
}
|
|
|
|
1;
|
|
|