mirror of
https://github.com/Icinga/icinga2.git
synced 2026-07-12 18:35:36 -04:00
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.
33 lines
899 B
C++
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 */
|