mirror of
https://github.com/webmin/webmin.git
synced 2025-08-16 14:51:18 +00:00
14 lines
239 B
Perl
Executable File
14 lines
239 B
Perl
Executable File
|
|
require 'cpan-lib.pl';
|
|
|
|
# Fix up a bad config
|
|
sub module_install
|
|
{
|
|
if ($config{'packages'} eq '1') {
|
|
# Work around a config bug
|
|
$config{'packages'} = "http://www.cpan.org/modules/02packages.details.txt.gz";
|
|
}
|
|
&save_module_config();
|
|
}
|
|
|