0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-29 02:02:38 +01:00

construct: Add -safe (safemode) even less functional alternative to -single.

This commit is contained in:
Jason Volk 2020-11-03 11:07:01 -08:00
parent 38e0021fe6
commit 2d2ce9dec5

View file

@ -21,6 +21,7 @@ bool cmdline;
std::vector<std::string> execute; std::vector<std::string> execute;
bool quietmode; bool quietmode;
bool single; bool single;
bool safemode;
bool debugmode; bool debugmode;
bool nolisten; bool nolisten;
bool nobackfill; bool nobackfill;
@ -53,6 +54,7 @@ lgetopt opts[]
{ "debug", &debugmode, lgetopt::BOOL, "Enable options for debugging" }, { "debug", &debugmode, lgetopt::BOOL, "Enable options for debugging" },
{ "quiet", &quietmode, lgetopt::BOOL, "Suppress log messages at the terminal" }, { "quiet", &quietmode, lgetopt::BOOL, "Suppress log messages at the terminal" },
{ "single", &single, lgetopt::BOOL, "Single user mode for maintenance and diagnostic" }, { "single", &single, lgetopt::BOOL, "Single user mode for maintenance and diagnostic" },
{ "safe", &safemode, lgetopt::BOOL, "Safe mode; like -single but with even less functionality." },
{ "console", &cmdline, lgetopt::BOOL, "Drop to a command line immediately after startup" }, { "console", &cmdline, lgetopt::BOOL, "Drop to a command line immediately after startup" },
{ "execute", &execute, lgetopt::STRINGS, "Execute command lines immediately after startup" }, { "execute", &execute, lgetopt::STRINGS, "Execute command lines immediately after startup" },
{ "nolisten", &nolisten, lgetopt::BOOL, "Normal execution but without listening sockets" }, { "nolisten", &nolisten, lgetopt::BOOL, "Normal execution but without listening sockets" },
@ -506,6 +508,13 @@ applyargs()
if(diagnostic) if(diagnostic)
ircd::diagnostic.set(diagnostic); ircd::diagnostic.set(diagnostic);
if(safemode)
{
single = true;
nocompact = true;
ircd::server::enable.set("false");
}
if(single && !bootstrap) if(single && !bootstrap)
{ {
ircd::write_avoid.set("true"); ircd::write_avoid.set("true");