diff options
author | Joe Rayhawk <jrayhawk@omgwallhack.org> | 2017-03-15 19:55:47 -0700 |
---|---|---|
committer | Joe Rayhawk <jrayhawk@omgwallhack.org> | 2017-03-15 19:55:47 -0700 |
commit | d06bc379b3c7d6b1a6c79d750a960c3914a4d304 (patch) | |
tree | 7c46366200d574d0188f105556222695091ffd14 | |
parent | 6a48324d2bbc32cf963ed2bf8a2175a76b5d4817 (diff) | |
download | cash-d06bc379b3c7d6b1a6c79d750a960c3914a4d304.tar.gz cash-d06bc379b3c7d6b1a6c79d750a960c3914a4d304.zip |
signcsr.sh: notext output for generated certificate
-rwxr-xr-x | signcsr.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -34,7 +34,7 @@ if [[ "$1" =~ \.spkac$ ]]; then # SPKAC HTML5 <keygen> standard openssl ca -config "$OPENSSL_CONFIG" -spkac "$1" -notext else # x509 CSR openssl req -in "$1" -text # print key size - openssl ca -config "$OPENSSL_CONFIG" -in "$1" + openssl ca -config "$OPENSSL_CONFIG" -in "$1" -notext fi if [ -e "$CA"/certs/"$SERIAL".pem ]; then # openssl lacks useful exit status codes, so we check to see if it actually did anything instead. |