diff options
Diffstat (limited to 'signcsr.sh')
-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. |