From 5554294bc70d94fc275e8424fa7e6775a6b0a759 Mon Sep 17 00:00:00 2001 From: Mark Stemm Date: Thu, 3 Mar 2022 18:04:50 -0800 Subject: [PATCH] Squash w Application changes to support actions --- userspace/falco/application.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/userspace/falco/application.cpp b/userspace/falco/application.cpp index 6a8b75a3..daeee385 100644 --- a/userspace/falco/application.cpp +++ b/userspace/falco/application.cpp @@ -116,6 +116,8 @@ bool application::init(int argc, char **argv, std::string &errstr) m_action_manager.add(std::shared_ptr(new act_start_webserver(*this))); #endif m_action_manager.add(std::shared_ptr(new act_validate_rules_files(*this))); + + m_action_manager.add(std::shared_ptr(new act_daemonize(*this))); m_initialized = true; return true; }