diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2020-05-12 20:27:44 +0200 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2020-05-12 20:27:44 +0200 |
commit | e6b89287024193103781294e669ea1b7b2a88d3e (patch) | |
tree | 44b9a8c90bc4326f7341b0cfd95f1de85622df78 | |
parent | 52eb2f0c92b28e9d10c4e0835161c5f39da07235 (diff) | |
download | abslibre-e6b89287024193103781294e669ea1b7b2a88d3e.tar.gz abslibre-e6b89287024193103781294e669ea1b7b2a88d3e.tar.bz2 abslibre-e6b89287024193103781294e669ea1b7b2a88d3e.zip |
pcr: pacman-static: add forgetten ca-dir.patch
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rw-r--r-- | pcr/pacman-static/ca-dir.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/pcr/pacman-static/ca-dir.patch b/pcr/pacman-static/ca-dir.patch new file mode 100644 index 000000000..1daba849b --- /dev/null +++ b/pcr/pacman-static/ca-dir.patch @@ -0,0 +1,31 @@ +--- apps/CA.pl.in 2016-09-26 11:46:04.000000000 +0200 ++++ apps/CA.pl.in 2016-11-01 16:02:16.709616823 +0100 +@@ -33,7 +33,7 @@ + my $PKCS12 = "$openssl pkcs12"; + + # default openssl.cnf file has setup as per the following +-my $CATOP = "./demoCA"; ++my $CATOP = "/etc/ssl"; + my $CAKEY = "cakey.pem"; + my $CAREQ = "careq.pem"; + my $CACERT = "cacert.pem"; +--- apps/openssl.cnf 2016-09-26 11:46:04.000000000 +0200 ++++ apps/openssl.cnf 2016-11-01 16:02:48.378503427 +0100 +@@ -39,7 +39,7 @@ + #################################################################### + [ CA_default ] + +-dir = ./demoCA # Where everything is kept ++dir = /etc/ssl # Where everything is kept + certs = $dir/certs # Where the issued certs are kept + crl_dir = $dir/crl # Where the issued crl are kept + database = $dir/index.txt # database index file. +@@ -323,7 +323,7 @@ + [ tsa_config1 ] + + # These are used by the TSA reply generation only. +-dir = ./demoCA # TSA root directory ++dir = /etc/ssl # TSA root directory + serial = $dir/tsaserial # The current serial number (mandatory) + crypto_device = builtin # OpenSSL engine to use for signing + signer_cert = $dir/tsacert.pem # The TSA signing certificate |