diff options
author | Kim Alvefur <zash@zash.se> | 2017-07-06 10:41:28 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-07-06 10:41:28 +0200 |
commit | 39bcea0025949af9de9555dee3c2c3f9a5cb7249 (patch) | |
tree | eff75de93a9b477f5e124d7a8627a204ed897acb /prosodyctl | |
parent | ae4828d86147bfe18e0e70416ac6c5c0130e5285 (diff) | |
download | prosody-39bcea0025949af9de9555dee3c2c3f9a5cb7249.tar.gz prosody-39bcea0025949af9de9555dee3c2c3f9a5cb7249.zip |
prosodyctl: Make `cert check` do the same as `check certs`
Diffstat (limited to 'prosodyctl')
-rwxr-xr-x | prosodyctl | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -934,6 +934,8 @@ function commands.cert(arg) return 1; end return cert_commands[subcmd](arg); + elseif subcmd == "check" then + return commands.check({"certs"}); end end show_usage("cert config|request|generate|key|import", "Helpers for generating X.509 certificates and keys.") |