daemonising is no longer the default

This commit is contained in:
martin 2014-03-10 11:09:19 +01:00 committed by Thulinma
parent bdc651bc85
commit 1063daeff4

View file

@ -491,7 +491,7 @@ void Util::Config::addBasicConnectorOptions(JSON::Value & capabilities){
option["long_off"] = "nodaemon"; option["long_off"] = "nodaemon";
option["short_off"] = "n"; option["short_off"] = "n";
option["help"] = "Whether or not to daemonize the process after starting."; option["help"] = "Whether or not to daemonize the process after starting.";
option["value"].append(1ll); option["value"].append(0ll);
addOption("daemonize", option); addOption("daemonize", option);
option.null(); option.null();