Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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