mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosody: Don't silently ignore unknown command-line options
This commit is contained in:
parent
60ccccb959
commit
ed3b57fd19
1 changed files with 6 additions and 0 deletions
6
prosody
6
prosody
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue