# HG changeset patch # User Kim Alvefur # Date 1580053221 -3600 # Node ID 88be11e9f9b943f1431ecad024e24c0d21a15473 # Parent 26fb44b61a1736658de3b93eda1d3535a6ec804f util.prosodyctl: Pass command line flag to force daemonization on start Part of the deprecation of the 'daemonize' config option. Further, it is a bit weird to run `prosodyctl start` and get Prosody running in the foreground. diff -r 26fb44b61a17 -r 88be11e9f9b9 util/prosodyctl.lua --- a/util/prosodyctl.lua Sun Jan 26 14:35:35 2020 +0100 +++ b/util/prosodyctl.lua Sun Jan 26 16:40:21 2020 +0100 @@ -249,9 +249,9 @@ return false, "already-running"; end if not source_dir then - os.execute(lua .. "./prosody"); + os.execute(lua .. "./prosody -D"); else - os.execute(lua .. source_dir.."/../../bin/prosody"); + os.execute(lua .. source_dir.."/../../bin/prosody -D"); end return true; end