prosody: Don't silently ignore unknown command-line options

This commit is contained in:
Matthew Wild 2015-12-10 13:33:14 +00:00
parent 60ccccb959
commit ed3b57fd19

View file

@ -43,6 +43,12 @@ if CFG_DATADIR then
end
end
if #arg > 0 and arg[1] ~= "--config" then
print("Unknown command-line option: "..tostring(arg[1]));
print("Perhaps you meant to use prosodyctl instead?");
return 1;
end
-- Global 'prosody' object
local prosody = { events = require "util.events".new(); };
_G.prosody = prosody;