aboutsummaryrefslogtreecommitdiff
path: root/src/zenserver/config.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/zenserver/config.cpp')
-rw-r--r--src/zenserver/config.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/zenserver/config.cpp b/src/zenserver/config.cpp
index 867089ded..b430db629 100644
--- a/src/zenserver/config.cpp
+++ b/src/zenserver/config.cpp
@@ -611,6 +611,9 @@ ParseCliOptions(int argc, char* argv[], ZenServerOptions& ServerOptions)
options.add_options()("sentry-allow-personal-info",
"Allow personally identifiable information in sentry crash reports",
cxxopts::value<bool>(ServerOptions.SentryAllowPII)->default_value("false"));
+ options.add_options()("detach",
+ "Indicate whether zenserver should detach from parent process group",
+ cxxopts::value<bool>(ServerOptions.Detach)->default_value("true"));
// clang-format off
options.add_options("logging")