diff options
Diffstat (limited to 'source/n/openssl/certwatch')
-rw-r--r-- | source/n/openssl/certwatch | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source/n/openssl/certwatch b/source/n/openssl/certwatch index 8fef1509f..d52dc3dc4 100644 --- a/source/n/openssl/certwatch +++ b/source/n/openssl/certwatch @@ -84,6 +84,7 @@ for binary in basename date find grep mail openssl touch ; do done find $CERTDIR -type f -maxdepth 1 | while read certfile ; do + if [ "$certfile" != "/etc/ssl/certs/ca-certificates.crt" ]; then certfilebase="$(basename "$certfile")" inform=PEM echo "$certfile" | grep -q -i '\.net$' @@ -124,5 +125,6 @@ find $CERTDIR -type f -maxdepth 1 | while read certfile ; do fi fi fi + fi done |