util.prosodyctl: Tell prosody do daemonize via command line flag (fixes #1514)

Backport of 88be11e9f9b9
This commit is contained in:
Kim Alvefur 2020-01-26 16:40:21 +01:00
parent 82c2f6fe22
commit f00f039f4b

View file

@ -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