aboutsummaryrefslogtreecommitdiffstats
path: root/util/prosodyctl/check.lua
diff options
context:
space:
mode:
Diffstat (limited to 'util/prosodyctl/check.lua')
-rw-r--r--util/prosodyctl/check.lua12
1 files changed, 11 insertions, 1 deletions
diff --git a/util/prosodyctl/check.lua b/util/prosodyctl/check.lua
index b452a0bf..c0eeffcc 100644
--- a/util/prosodyctl/check.lua
+++ b/util/prosodyctl/check.lua
@@ -254,6 +254,9 @@ local check_opts = {
short_params = {
h = "help", v = "verbose";
};
+ value_params = {
+ ping = true;
+ };
};
local function check(arg)
@@ -262,7 +265,14 @@ local function check(arg)
return 1;
end
local what = table.remove(arg, 1);
- local opts = assert(parse_args(arg, check_opts));
+ local opts, opts_err, opts_info = parse_args(arg, check_opts);
+ if opts_err == "missing-value" then
+ print("Error: Expected a value after '"..opts_info.."'");
+ return 1;
+ elseif opts_err == "param-not-found" then
+ print("Error: Unknown parameter: "..opts_info);
+ return 1;
+ end
local array = require "util.array";
local set = require "util.set";
local it = require "util.iterators";