aboutsummaryrefslogtreecommitdiffstats
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
commitb5181287340558c4e97cd2a3b08b84840cd80c9a (patch)
treeeff75de93a9b477f5e124d7a8627a204ed897acb
parent943e6be943dae4b05ac76d34176b5e6efd66115c (diff)
downloadprosody-b5181287340558c4e97cd2a3b08b84840cd80c9a.tar.gz
prosody-b5181287340558c4e97cd2a3b08b84840cd80c9a.zip
prosodyctl: Make `cert check` do the same as `check certs`
-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.")