icinga2/lib/cli/nodewizardcommand.hpp

37 lines
876 B
C++
Raw Permalink Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2015-06-24 08:13:54 -04:00
#ifndef NODEWIZARDCOMMAND_H
#define NODEWIZARDCOMMAND_H
#include "cli/clicommand.hpp"
namespace icinga
{
/**
2015-06-24 08:13:54 -04:00
* The "node wizard" command.
*
* @ingroup cli
*/
2018-01-04 00:11:04 -05:00
class NodeWizardCommand final : public CLICommand
{
public:
2014-11-07 06:32:25 -05: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 06:53:19 -04:00
int AgentSatelliteSetup() const;
int MasterSetup() const;
};
}
2015-06-24 08:13:54 -04:00
#endif /* NODEWIZARDCOMMAND_H */