From: Ralf Jung Date: Sun, 13 Dec 2015 10:57:30 +0000 (+0100) Subject: certcheck has a --help argument X-Git-Url: https://git.ralfj.de/lets-encrypt-tiny.git/commitdiff_plain/9bcf60e9181a6f3c75e35a34e806301a702184b9 certcheck has a --help argument --- diff --git a/certcheck b/certcheck index dc9e9ef..e6986bd 100755 --- a/certcheck +++ b/certcheck @@ -1,8 +1,5 @@ #!/usr/bin/python3 -## Usage: -## ./certcheck -d DAYS ... -## Recursively crawl all given folders for files ending in '.crt', and check all of them and all given files for their -## expiry date. If that is less than DAYS in the future, print that information. +## Call with "--help" for documentation. import argparse, subprocess, re, os, datetime @@ -28,7 +25,7 @@ if __name__ == "__main__": parser = argparse.ArgumentParser(description='Check for soon-to-expire (and already expired) certificates') parser.add_argument("-d", "--days", metavar='N', dest="days", type=int, default=14, - help="Warn about certificates valid for less than N (default 7)") + help="Warn about certificates valid for less than N (default 14).") parser.add_argument("certs", metavar='CERTS', nargs='+', help="These certificate files are checked. Directories are searched recursively for files called '*.crt'.") args = parser.parse_args()