icinga2/lib/cli/daemoncommand.hpp
Yonas Habteab 1a170bed74 Apply RLIMIT adjustment conditionally based on the target command
Apply resource limits only when the target command needs it. This allows
to run sub-commands that do not need the resource limits without requiring
elevated privileges. Each command that needs the resource limits should
override `CLICommand::NeedsRLimitAdjustment()` to return true.
2026-02-23 16:30:01 +01:00

33 lines
899 B
C++

// SPDX-FileCopyrightText: 2012 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef DAEMONCOMMAND_H
#define DAEMONCOMMAND_H
#include "cli/clicommand.hpp"
namespace icinga
{
/**
* The "daemon" CLI command.
*
* @ingroup cli
*/
class DaemonCommand final : public CLICommand
{
public:
DECLARE_PTR_TYPEDEFS(DaemonCommand);
String GetDescription() const override;
String GetShortDescription() const override;
bool NeedsRLimitAdjustment() const override;
void InitParameters(boost::program_options::options_description& visibleDesc,
boost::program_options::options_description& hiddenDesc) const override;
std::vector<String> GetArgumentSuggestions(const String& argument, const String& word) const override;
int Run(const boost::program_options::variables_map& vm, const std::vector<std::string>& ap) const override;
};
}
#endif /* DAEMONCOMMAND_H */