2014-10-17 15:13:17 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2016-01-12 08:29:59 +01:00
|
|
|
* Copyright (C) 2012-2016 Icinga Development Team (https://www.icinga.org/) *
|
2014-10-17 15:13:17 +02:00
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU General Public License *
|
|
|
|
* as published by the Free Software Foundation; either version 2 *
|
|
|
|
* of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the Free Software Foundation *
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2014-10-31 11:38:16 +01:00
|
|
|
#include "cli/nodeaddcommand.hpp"
|
|
|
|
#include "cli/nodeutility.hpp"
|
2014-10-19 14:21:12 +02:00
|
|
|
#include "base/logger.hpp"
|
2014-10-17 15:13:17 +02:00
|
|
|
#include "base/application.hpp"
|
|
|
|
#include <boost/algorithm/string/join.hpp>
|
|
|
|
#include <boost/algorithm/string/replace.hpp>
|
2014-10-18 21:06:28 +02:00
|
|
|
#include <iostream>
|
2014-10-17 15:13:17 +02:00
|
|
|
#include <fstream>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
namespace po = boost::program_options;
|
|
|
|
|
2014-10-31 11:38:16 +01:00
|
|
|
REGISTER_CLICOMMAND("node/add", NodeAddCommand);
|
2014-10-17 15:13:17 +02:00
|
|
|
|
2014-10-31 11:38:16 +01:00
|
|
|
String NodeAddCommand::GetDescription(void) const
|
2014-10-17 15:13:17 +02:00
|
|
|
{
|
2014-10-31 11:53:44 +01:00
|
|
|
return "Add Icinga 2 node.";
|
2014-10-17 15:13:17 +02:00
|
|
|
}
|
|
|
|
|
2014-10-31 11:38:16 +01:00
|
|
|
String NodeAddCommand::GetShortDescription(void) const
|
2014-10-17 15:13:17 +02:00
|
|
|
{
|
2014-10-31 11:53:44 +01:00
|
|
|
return "add node";
|
2014-10-17 15:13:17 +02:00
|
|
|
}
|
|
|
|
|
2014-10-31 11:38:16 +01:00
|
|
|
int NodeAddCommand::GetMinArguments(void) const
|
2014-10-24 13:15:21 +02:00
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-11-23 15:33:28 +01:00
|
|
|
bool NodeAddCommand::IsDeprecated(void) const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-10-17 15:13:17 +02:00
|
|
|
/**
|
2014-10-31 11:53:44 +01:00
|
|
|
* The entry point for the "node add" CLI command.
|
2014-10-17 15:13:17 +02:00
|
|
|
*
|
|
|
|
* @returns An exit status.
|
|
|
|
*/
|
2014-10-31 11:38:16 +01:00
|
|
|
int NodeAddCommand::Run(const boost::program_options::variables_map& vm, const std::vector<std::string>& ap) const
|
2014-10-17 15:13:17 +02:00
|
|
|
{
|
2014-10-31 11:38:16 +01:00
|
|
|
NodeUtility::AddNode(ap[0]);
|
2014-10-17 15:13:17 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|