From a026f2dbd405da224a952b42e7831648026ccee2 Mon Sep 17 00:00:00 2001 From: Jeremy Dubois Date: Tue, 9 Aug 2022 15:45:06 +0200 Subject: [PATCH] README forgot a line --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 472b84d..9773668 100644 --- a/README.md +++ b/README.md @@ -151,6 +151,7 @@ $ for cert_name in $(cat /path/to/file_certs_to_revoke); do CA_PASSWORD=$CA_PASS To create (without `--replace-existing`) or renew (with `--replace-existing`), with a password on the client key : ~~~ +$ read CA_PASS $ for cert_name in $(cat /path/to/file_certs_to_create); do apg -n 1 -m 16 -M lcN > /path/to/folder/to/store/${cert_name}.passwd; CA_PASSWORD=$CA_PASS shellpki create --replace-existing --non-interactive --password-file /path/to/folder/to/store/${cert_name}.passwd ${cert_name}; done ~~~