daemonizer: add --non-interactive for windows

The RPC functional tests need it

Thanks to iDunk for debugging/testing
pull/200/head
moneromooo-monero 5 years ago
parent 475481949a
commit 7af49ef0c2
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -61,6 +61,10 @@ namespace daemonizer
"run-as-service"
, "Hidden -- true if running as windows service"
};
const command_line::arg_descriptor<bool> arg_non_interactive = {
"non-interactive"
, "Run non-interactive"
};
std::string get_argument_string(int argc, char const * argv[])
{
@ -83,6 +87,7 @@ namespace daemonizer
command_line::add_arg(normal_options, arg_start_service);
command_line::add_arg(normal_options, arg_stop_service);
command_line::add_arg(hidden_options, arg_is_service);
command_line::add_arg(hidden_options, arg_non_interactive);
}
inline boost::filesystem::path get_default_data_dir()
@ -177,7 +182,10 @@ namespace daemonizer
else // interactive
{
//LOG_PRINT_L0("Monero '" << MONERO_RELEASE_NAME << "' (v" << MONERO_VERSION_FULL);
return executor.run_interactive(vm);
if (command_line::has_arg(vm, arg_non_interactive))
return executor.run_non_interactive(vm);
else
return executor.run_interactive(vm);
}
return false;

Loading…
Cancel
Save