0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-20 10:58:20 +02:00

construct: Remove the conftest startup option.

This commit is contained in:
Jason Volk 2018-06-14 21:58:45 -06:00
parent 4f819e9c2a
commit b304aec5bc

View file

@ -39,7 +39,6 @@ const char *const usererrstr
)"};
bool printversion;
bool testing_conf;
bool cmdline;
const char *configfile;
const char *execute;
@ -48,7 +47,6 @@ lgetopt opts[] =
{ "help", nullptr, lgetopt::USAGE, "Print this text" },
{ "version", &printversion, lgetopt::BOOL, "Print version and exit" },
{ "configfile", &configfile, lgetopt::STRING, "File to use for ircd.conf" },
{ "conftest", &testing_conf, lgetopt::YESNO, "Test the configuration files and exit" },
{ "debug", &ircd::debugmode, lgetopt::BOOL, "Enable options for debugging" },
{ "console", &cmdline, lgetopt::BOOL, "Drop to a command line immediately after startup" },
{ "execute", &execute, lgetopt::STRING, "Execute command lines immediately after startup" },