From: Dylan William Hardison Date: Sun, 11 Sep 2016 13:53:48 +0000 (-0400) Subject: remove radius and ldap from default set of --cpanm features X-Git-Tag: release-5.1.2~71 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=99a1110225dee182e6edd22d06b9326c6897a0f7;p=thirdparty%2Fbugzilla.git remove radius and ldap from default set of --cpanm features --- diff --git a/checksetup.pl b/checksetup.pl index e928a1258e..cf175a2885 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) {