]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
remove radius and ldap from default set of --cpanm features
authorDylan William Hardison <dylan@hardison.net>
Sun, 11 Sep 2016 13:53:48 +0000 (09:53 -0400)
committerDylan William Hardison <dylan@hardison.net>
Sun, 11 Sep 2016 13:53:48 +0000 (09:53 -0400)
checksetup.pl

index e928a1258e2f541cbf39b65d45faff6ed6b330c4..cf175a28852bf2f3a3770821cb3a388b59d9a467 100755 (executable)
@@ -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) {