aboutsummaryrefslogtreecommitdiffstats
path: root/prosodyctl
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-07-06 10:41:28 +0200
committerKim Alvefur <zash@zash.se>2017-07-06 10:41:28 +0200
commit39bcea0025949af9de9555dee3c2c3f9a5cb7249 (patch)
treeeff75de93a9b477f5e124d7a8627a204ed897acb /prosodyctl
parentae4828d86147bfe18e0e70416ac6c5c0130e5285 (diff)
downloadprosody-39bcea0025949af9de9555dee3c2c3f9a5cb7249.tar.gz
prosody-39bcea0025949af9de9555dee3c2c3f9a5cb7249.zip
prosodyctl: Make `cert check` do the same as `check certs`
Diffstat (limited to 'prosodyctl')
-rwxr-xr-xprosodyctl2
1 files changed, 2 insertions, 0 deletions
diff --git a/prosodyctl b/prosodyctl
index e8e84416..8997f31c 100755
--- a/prosodyctl
+++ b/prosodyctl
@@ -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.")