mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.startup: Show error for unrecognized arguments passed to 'prosody' (fixes #1722)
This commit is contained in:
parent
df4ba58b9f
commit
ff2a6d764e
1 changed files with 13 additions and 6 deletions
|
@ -46,12 +46,19 @@ function startup.parse_args(profile)
|
|||
end
|
||||
os.exit(1);
|
||||
end
|
||||
if opts.help and prosody.process_type == "prosody" then
|
||||
print("prosody [ -D | -F ] [ --config /path/to/prosody.cfg.lua ]");
|
||||
print(" -D, --daemonize Run in the background")
|
||||
print(" -F, --no-daemonize Run in the foreground")
|
||||
print(" --config FILE Specify config file")
|
||||
os.exit(0);
|
||||
if prosody.process_type == "prosody" then
|
||||
if #arg > 0 then
|
||||
print("Unrecognized option: "..arg[1]);
|
||||
print("(Did you mean 'prosodyctl "..arg[1].."'?)");
|
||||
print("");
|
||||
end
|
||||
if opts.help or #arg > 0 then
|
||||
print("prosody [ -D | -F ] [ --config /path/to/prosody.cfg.lua ]");
|
||||
print(" -D, --daemonize Run in the background")
|
||||
print(" -F, --no-daemonize Run in the foreground")
|
||||
print(" --config FILE Specify config file")
|
||||
os.exit(0);
|
||||
end
|
||||
end
|
||||
prosody.opts = opts;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue