Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

list-crl 297B

12345678910111213
  1. #!/bin/bash
  2. # list revoked certificates
  3. CRL="${1:-crl.pem}"
  4. if [ "$KEY_DIR" ]; then
  5. cd "$KEY_DIR" && \
  6. $OPENSSL crl -text -noout -in "$CRL"
  7. else
  8. echo 'Please source the vars script first (i.e. "source ./vars")'
  9. echo 'Make sure you have edited it to reflect your configuration.'
  10. fi