svn commit: r352951 - head/secure/caroot
Kyle Evans
kevans at FreeBSD.org
Wed Oct 2 01:27:51 UTC 2019
Author: kevans
Date: Wed Oct 2 01:27:50 2019
New Revision: 352951
URL: https://svnweb.freebsd.org/changeset/base/352951
Log:
caroot: add @generated tags to extracted .pem
As is the current trend; while these files are manually curated, they are
still generated. If they end up in a review, it would be helpful to also
take the hint and hide them.
Modified:
head/secure/caroot/MAca-bundle.pl
Modified: head/secure/caroot/MAca-bundle.pl
==============================================================================
--- head/secure/caroot/MAca-bundle.pl Wed Oct 2 01:06:37 2019 (r352950)
+++ head/secure/caroot/MAca-bundle.pl Wed Oct 2 01:27:50 2019 (r352951)
@@ -39,6 +39,7 @@ use MIME::Base64;
use Getopt::Long;
my $VERSION = '$FreeBSD$';
+my $generated = '@' . 'generated';
my $inputfh = *STDIN;
my $debug = 0;
my $infile;
@@ -78,6 +79,8 @@ sub print_header($$)
## Extracted from nss
## with $VERSION
##
+## $generated
+##
EOFH
} else {
print $dstfile <<EOH;
@@ -90,6 +93,8 @@ EOFH
##
## Extracted from nss
## with $VERSION
+##
+## $generated
##
EOH
}
More information about the svn-src-all
mailing list