From e686ca5595526abb1516dbdc557685ef2339fa57 Mon Sep 17 00:00:00 2001 From: "David E. Weekly" Date: Tue, 23 Jun 2020 23:02:35 -0700 Subject: [PATCH] Change check_sigs to on by default. --- lib/CPAN/FirstTime.pm | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/lib/CPAN/FirstTime.pm b/lib/CPAN/FirstTime.pm index 2d3f5e226..70df7d378 100644 --- a/lib/CPAN/FirstTime.pm +++ b/lib/CPAN/FirstTime.pm @@ -142,10 +142,9 @@ author is not available or where some prerequisite for Module::Signature has a bug and so on. With the check_sigs parameter you can turn signature checking on and -off. The default is off for now because the whole tool chain for the -functionality is not yet considered mature by some. The author of -CPAN.pm would recommend setting it to true most of the time and -turning it off only if it turns out to be annoying. +off. The default is on. The author of CPAN.pm would recommend setting +it to true most of the time and turning it off only if it turns out to +be annoying. Note that if you do not have Module::Signature installed, no signature checks will be performed at all. @@ -959,7 +958,7 @@ sub init { # #= Module::Signature # - my_yn_prompt(check_sigs => 0, $matcher); + my_yn_prompt(check_sigs => 1, $matcher); # #= CPAN::Reporter