remove radius and ldap from default set of --cpanm features

parent d3878e0b
...@@ -63,7 +63,10 @@ print(install_string('header', get_version_and_os()) . "\n") unless $silent; ...@@ -63,7 +63,10 @@ print(install_string('header', get_version_and_os()) . "\n") unless $silent;
exit 0 if $switch{'version'}; exit 0 if $switch{'version'};
if (defined $switch{cpanm}) { if (defined $switch{cpanm}) {
my $default = 'all notest -oracle -mysql -pg -mod_perl -old_charts -new_charts -graphical_reports -detect_charset'; my $default = join(' ', qw(
all notest -oracle -mysql -pg -mod_perl -old_charts -new_charts
-graphical_reports -detect_charset -auth_radius -auth_ldap
));
my @features = split(/\s+/, $switch{cpanm} || $default); my @features = split(/\s+/, $switch{cpanm} || $default);
my @cpanm_args = ('-l', 'local', '--installdeps'); my @cpanm_args = ('-l', 'local', '--installdeps');
while (my $feature = shift @features) { while (my $feature = shift @features) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment