From 99a1110225dee182e6edd22d06b9326c6897a0f7 Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Sun, 11 Sep 2016 09:53:48 -0400 Subject: remove radius and ldap from default set of --cpanm features --- checksetup.pl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'checksetup.pl') 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) { -- cgit v1.2.3-24-g4f1b