mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.prosodyctl: Tell prosody do daemonize via command line flag (fixes #1514)
Backport of 88be11e9f9b9
This commit is contained in:
parent
82c2f6fe22
commit
f00f039f4b
1 changed files with 2 additions and 2 deletions
|
@ -238,9 +238,9 @@ local function start(source_dir)
|
|||
return false, "already-running";
|
||||
end
|
||||
if not source_dir then
|
||||
os.execute("./prosody");
|
||||
os.execute("./prosody -D");
|
||||
else
|
||||
os.execute(source_dir.."/../../bin/prosody");
|
||||
os.execute(source_dir.."/../../bin/prosody -D");
|
||||
end
|
||||
return true;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue