Squash w Application changes to support actions

This commit is contained in:
Mark Stemm
2022-03-03 18:04:50 -08:00
parent ebef16f28f
commit 5554294bc7

View File

@@ -116,6 +116,8 @@ bool application::init(int argc, char **argv, std::string &errstr)
m_action_manager.add(std::shared_ptr<runnable_action>(new act_start_webserver(*this)));
#endif
m_action_manager.add(std::shared_ptr<runnable_action>(new act_validate_rules_files(*this)));
m_action_manager.add(std::shared_ptr<runnable_action>(new act_daemonize(*this)));
m_initialized = true;
return true;
}