summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2016-09-11 15:53:48 +0200
committerDylan William Hardison <dylan@hardison.net>2016-09-11 15:53:48 +0200
commit99a1110225dee182e6edd22d06b9326c6897a0f7 (patch)
tree4ec224ecd00d3ef251b0cf3ff75b59ac02d98554 /checksetup.pl
parentd3878e0ba24285470c459a60881dc87a15a2d43d (diff)
downloadbugzilla-99a1110225dee182e6edd22d06b9326c6897a0f7.tar.gz
bugzilla-99a1110225dee182e6edd22d06b9326c6897a0f7.tar.xz
remove radius and ldap from default set of --cpanm features
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl5
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) {