Browse Source

Merge pull request #1 from dschaper/fix/cleanHelp

Clean up help message
pull/340/head
Dan Schaper 8 years ago
committed by GitHub
parent
commit
5f644c2c68
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 13 deletions
  1. +10
    -13
      getssl

+ 10
- 13
getssl View File

@ -930,24 +930,21 @@ graceful_exit() { # normal exit function.
help_message() { # print out the help message
cat <<- _EOF_
$PROGNAME ver. $VERSION
Obtain SSL certificates from the letsencrypt.org ACME server
$(usage)
Options:
-a, --all Check all certificates
-d, --debug Outputs debug information
-c, --create Create default config files
-f, --force Force renewal of cert (overrides expiry checks)
-h, --help Display this help message and exit
-q, --quiet Quiet mode (only outputs on error, success of new cert, or getssl was upgraded)
-Q, --mute Like -q, but mutes notification about successful upgrade
-r, --revoke "cert" "key" [CA_server] Revoke a certificate (the cert and key are required)
-u, --upgrade Upgrade getssl if a more recent version is available
-k, --keep "#" Maximum amount of old getssl versions to keep when upgrading
-U, --nocheck Do not check if a more recent version is available
-w working_dir "Working directory"
-a, --all Check all certificates
-d, --debug Output debug information
-c, --create DOMAIN Create default configuration files
-f, --force Force renewal of cert (overrides expiry checks)
-h, --help Display this help message and exit
-q, --quiet Quiet mode (only outputs on error, success of new cert,
or getssl was upgraded)
-Q, --mute Like -q, but mutes notification about successful upgrade
-r, --revoke CERT KEY [CA SERVER] Revoke a certificate
-k, --keep NUMBER Maximum amount of old getssl versions to keep when upgrading
_EOF_
}


Loading…
Cancel
Save