diff options
author | Noah Watkins <noahwatkins@gmail.com> | 2017-02-21 16:44:22 -0800 |
---|---|---|
committer | Noah Watkins <noahwatkins@gmail.com> | 2017-02-21 16:44:22 -0800 |
commit | 44a5b03841e34154e824fcc7773c458326a3487f (patch) | |
tree | 81972023edaccef77cd322a1e2e33caef677da02 /src/daemon/executor.cpp | |
parent | Merge pull request #1761 (diff) | |
download | monero-44a5b03841e34154e824fcc7773c458326a3487f.tar.xz |
create a foreground non-interactive mode
Signed-off-by: Noah Watkins <noahwatkins@gmail.com>
Diffstat (limited to 'src/daemon/executor.cpp')
-rw-r--r-- | src/daemon/executor.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/daemon/executor.cpp b/src/daemon/executor.cpp index ac5803cfb..20217f2f4 100644 --- a/src/daemon/executor.cpp +++ b/src/daemon/executor.cpp @@ -63,6 +63,13 @@ namespace daemonize return t_daemon{vm}; } + bool t_executor::run_non_interactive( + boost::program_options::variables_map const & vm + ) + { + return t_daemon{vm}.run(false); + } + bool t_executor::run_interactive( boost::program_options::variables_map const & vm ) |