diff options
author | Dylan William Hardison <dylan@hardison.net> | 2016-09-11 15:53:48 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2016-09-11 15:53:48 +0200 |
commit | 99a1110225dee182e6edd22d06b9326c6897a0f7 (patch) | |
tree | 4ec224ecd00d3ef251b0cf3ff75b59ac02d98554 | |
parent | d3878e0ba24285470c459a60881dc87a15a2d43d (diff) | |
download | bugzilla-99a1110225dee182e6edd22d06b9326c6897a0f7.tar.gz bugzilla-99a1110225dee182e6edd22d06b9326c6897a0f7.tar.xz |
remove radius and ldap from default set of --cpanm features
-rwxr-xr-x | checksetup.pl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/checksetup.pl b/checksetup.pl index e928a1258..cf175a288 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -63,7 +63,10 @@ print(install_string('header', get_version_and_os()) . "\n") unless $silent; exit 0 if $switch{'version'}; 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 @cpanm_args = ('-l', 'local', '--installdeps'); while (my $feature = shift @features) { |