...
Create the following directory tree and empty index.txt. Place *-openssl.cnf
files in their corresponding directories and modify them to match your organisation’s information. Your keystores and truststores will be output to a directory named keystores
one level above your working directory.
...
Code Block |
---|
for dir in `echo mkdir -p certs crl intermediate intermediate/certs intermediate/csr intermediate/newcerts intermediate/private private newcerts ../keystores`; do mkdir $dir; donekeystores; touch index.txt; echo 1001 > serial; |
...