icinga2/lib/cli/nodewizardcommand.hpp

37 lines
876 B
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2015-06-24 14:13:54 +02:00
#ifndef NODEWIZARDCOMMAND_H
#define NODEWIZARDCOMMAND_H
#include "cli/clicommand.hpp"
namespace icinga
{
/**
2015-06-24 14:13:54 +02:00
* The "node wizard" command.
*
* @ingroup cli
*/
2018-01-04 06:11:04 +01:00
class NodeWizardCommand final : public CLICommand
{
public:
2014-11-07 12:32:25 +01:00
DECLARE_PTR_TYPEDEFS(NodeWizardCommand);
String GetDescription() const override;
String GetShortDescription() const override;
int GetMaxArguments() const override;
int Run(const boost::program_options::variables_map& vm, const std::vector<std::string>& ap) const override;
ImpersonationLevel GetImpersonationLevel() const override;
void InitParameters(boost::program_options::options_description& visibleDesc,
boost::program_options::options_description& hiddenDesc) const override;
private:
2019-07-20 12:53:19 +02:00
int AgentSatelliteSetup() const;
int MasterSetup() const;
};
}
2015-06-24 14:13:54 +02:00
#endif /* NODEWIZARDCOMMAND_H */