You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Many Perl modules contain their own version number which makes bumping the version a chore. Unless there is a very good reason to have separate versions in those modules these should be removed.
$ find . -type f -exec grep -H VERSION {} ;
(partial output:)
Binary file ./.git/index matches
./agent/bin/certnanny:my $msg = "CertNanny, version $CertNanny::VERSION";
./agent/lib/perl/__Win32/DAEMON.PM:$VERSION = 20110117;
./agent/lib/perl/__Win32/DAEMON.PM:$VERSION = 20110117;
./agent/lib/perl/CertNanny/Config.pm:use vars qw(@isa@export @EXPORT_OK %EXPORT_TAGS $VERSION);
./agent/lib/perl/CertNanny/Config.pm:$VERSION = 0.10;
./agent/lib/perl/CertNanny/Enroll/Sscep.pm:use vars qw( $VERSION );
./agent/lib/perl/CertNanny/Enroll/Sscep.pm: $monitor = lc($macaddresses) . '&cnversion=' . "$CertNanny::VERSION";
./agent/lib/perl/CertNanny/Enroll.pm:use vars qw( $VERSION );
./agent/lib/perl/CertNanny/Enroll.pm:$VERSION = 0.10;
./agent/lib/perl/CertNanny/HSM/Chil.pm:use vars qw( $VERSION );
./agent/lib/perl/CertNanny/HSM/Chil.pm:$VERSION = 0.10;
./agent/lib/perl/CertNanny/HSM/Utimaco.pm:use vars qw( $VERSION );
./agent/lib/perl/CertNanny/HSM/Utimaco.pm:$VERSION = 0.10;
./agent/lib/perl/CertNanny/HSM.pm:use vars qw( $VERSION );
./agent/lib/perl/CertNanny/HSM.pm:$VERSION = 0.10;
./agent/lib/perl/CertNanny/Keystore/Java.pm:use vars qw(@isa@export @EXPORT_OK %EXPORT_TAGS $VERSION);
./agent/lib/perl/CertNanny/Keystore/Java.pm:$VERSION = 0.10;
./agent/lib/perl/CertNanny/Keystore/MQ.pm:use vars qw(@isa@export @EXPORT_OK %EXPORT_TAGS $VERSION);
./agent/lib/perl/CertNanny/Keystore/MQ.pm:$VERSION = 0.10;
./agent/lib/perl/CertNanny/Keystore/OpenSSL.pm:use vars qw(@isa@export @EXPORT_OK %EXPORT_TAGS $VERSION);
./agent/lib/perl/CertNanny/Keystore/OpenSSL.pm:$VERSION = 0.10;
./agent/lib/perl/CertNanny/Keystore/PKCS12.pm:use vars qw(@isa@export @EXPORT_OK %EXPORT_TAGS $VERSION);
./agent/lib/perl/CertNanny/Keystore/PKCS12.pm:$VERSION = 0.10;
./agent/lib/perl/CertNanny/Keystore/SAP.pm:use vars qw(@isa@export @EXPORT_OK %EXPORT_TAGS $VERSION);
./agent/lib/perl/CertNanny/Keystore/SAP.pm:$VERSION = 0.10;
./agent/lib/perl/CertNanny/Keystore/Skeleton.pm:use vars qw(@isa@export @EXPORT_OK %EXPORT_TAGS $VERSION);
./agent/lib/perl/CertNanny/Keystore/Skeleton.pm:$VERSION = 0.10;
./agent/lib/perl/CertNanny/Keystore/Windows.pm:use vars qw(@isa@export @EXPORT_OK %EXPORT_TAGS $VERSION);
./agent/lib/perl/CertNanny/Keystore/Windows.pm:$VERSION = 0.01;
./agent/lib/perl/CertNanny/Keystore/WindowsIIS.pm:use vars qw($VERSION);
./agent/lib/perl/CertNanny/Keystore/WindowsIIS.pm:$VERSION = 0.10;
./agent/lib/perl/CertNanny/Keystore.pm:use vars qw($VERSION);
./agent/lib/perl/CertNanny/Keystore.pm:$VERSION = 0.10;
./agent/lib/perl/CertNanny/Logging.pm:use vars qw(@isa@export @EXPORT_OK %EXPORT_TAGS $VERSION);
./agent/lib/perl/CertNanny/Logging.pm:$VERSION = 0.10;
./agent/lib/perl/CertNanny/Util.pm:use vars qw(@isa@export @EXPORT_OK %EXPORT_TAGS $VERSION);
./agent/lib/perl/CertNanny/Util.pm:$VERSION = 0.10;
./agent/lib/perl/CertNanny.pm:use vars qw(@isa@export @EXPORT_OK %EXPORT_TAGS $VERSION $AUTOLOAD);
./agent/lib/perl/CertNanny.pm:$VERSION = "0.95.0";
The text was updated successfully, but these errors were encountered:
Many Perl modules contain their own version number which makes bumping the version a chore. Unless there is a very good reason to have separate versions in those modules these should be removed.
$ find . -type f -exec grep -H VERSION {} ;
(partial output:)
Binary file ./.git/index matches
./agent/bin/certnanny:my $msg = "CertNanny, version $CertNanny::VERSION";
./agent/lib/perl/__Win32/DAEMON.PM:$VERSION = 20110117;
./agent/lib/perl/__Win32/DAEMON.PM:$VERSION = 20110117;
./agent/lib/perl/CertNanny/Config.pm:use vars qw(@isa @export @EXPORT_OK %EXPORT_TAGS $VERSION);
./agent/lib/perl/CertNanny/Config.pm:$VERSION = 0.10;
./agent/lib/perl/CertNanny/Enroll/Sscep.pm:use vars qw( $VERSION );
./agent/lib/perl/CertNanny/Enroll/Sscep.pm: $monitor = lc($macaddresses) . '&cnversion=' . "$CertNanny::VERSION";
./agent/lib/perl/CertNanny/Enroll.pm:use vars qw( $VERSION );
./agent/lib/perl/CertNanny/Enroll.pm:$VERSION = 0.10;
./agent/lib/perl/CertNanny/HSM/Chil.pm:use vars qw( $VERSION );
./agent/lib/perl/CertNanny/HSM/Chil.pm:$VERSION = 0.10;
./agent/lib/perl/CertNanny/HSM/Utimaco.pm:use vars qw( $VERSION );
./agent/lib/perl/CertNanny/HSM/Utimaco.pm:$VERSION = 0.10;
./agent/lib/perl/CertNanny/HSM.pm:use vars qw( $VERSION );
./agent/lib/perl/CertNanny/HSM.pm:$VERSION = 0.10;
./agent/lib/perl/CertNanny/Keystore/Java.pm:use vars qw(@isa @export @EXPORT_OK %EXPORT_TAGS $VERSION);
./agent/lib/perl/CertNanny/Keystore/Java.pm:$VERSION = 0.10;
./agent/lib/perl/CertNanny/Keystore/MQ.pm:use vars qw(@isa @export @EXPORT_OK %EXPORT_TAGS $VERSION);
./agent/lib/perl/CertNanny/Keystore/MQ.pm:$VERSION = 0.10;
./agent/lib/perl/CertNanny/Keystore/OpenSSL.pm:use vars qw(@isa @export @EXPORT_OK %EXPORT_TAGS $VERSION);
./agent/lib/perl/CertNanny/Keystore/OpenSSL.pm:$VERSION = 0.10;
./agent/lib/perl/CertNanny/Keystore/PKCS12.pm:use vars qw(@isa @export @EXPORT_OK %EXPORT_TAGS $VERSION);
./agent/lib/perl/CertNanny/Keystore/PKCS12.pm:$VERSION = 0.10;
./agent/lib/perl/CertNanny/Keystore/SAP.pm:use vars qw(@isa @export @EXPORT_OK %EXPORT_TAGS $VERSION);
./agent/lib/perl/CertNanny/Keystore/SAP.pm:$VERSION = 0.10;
./agent/lib/perl/CertNanny/Keystore/Skeleton.pm:use vars qw(@isa @export @EXPORT_OK %EXPORT_TAGS $VERSION);
./agent/lib/perl/CertNanny/Keystore/Skeleton.pm:$VERSION = 0.10;
./agent/lib/perl/CertNanny/Keystore/Windows.pm:use vars qw(@isa @export @EXPORT_OK %EXPORT_TAGS $VERSION);
./agent/lib/perl/CertNanny/Keystore/Windows.pm:$VERSION = 0.01;
./agent/lib/perl/CertNanny/Keystore/WindowsIIS.pm:use vars qw($VERSION);
./agent/lib/perl/CertNanny/Keystore/WindowsIIS.pm:$VERSION = 0.10;
./agent/lib/perl/CertNanny/Keystore.pm:use vars qw($VERSION);
./agent/lib/perl/CertNanny/Keystore.pm:$VERSION = 0.10;
./agent/lib/perl/CertNanny/Logging.pm:use vars qw(@isa @export @EXPORT_OK %EXPORT_TAGS $VERSION);
./agent/lib/perl/CertNanny/Logging.pm:$VERSION = 0.10;
./agent/lib/perl/CertNanny/Util.pm:use vars qw(@isa @export @EXPORT_OK %EXPORT_TAGS $VERSION);
./agent/lib/perl/CertNanny/Util.pm:$VERSION = 0.10;
./agent/lib/perl/CertNanny.pm:use vars qw(@isa @export @EXPORT_OK %EXPORT_TAGS $VERSION $AUTOLOAD);
./agent/lib/perl/CertNanny.pm:$VERSION = "0.95.0";
The text was updated successfully, but these errors were encountered: