2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2014-10-20 21:14:00 +02:00
|
|
|
|
|
|
|
#include "cli/variablelistcommand.hpp"
|
2014-10-30 15:22:55 +01:00
|
|
|
#include "cli/variableutility.hpp"
|
2014-10-20 21:14:00 +02:00
|
|
|
#include "base/logger.hpp"
|
|
|
|
#include "base/application.hpp"
|
|
|
|
#include "base/convert.hpp"
|
2015-08-15 20:28:05 +02:00
|
|
|
#include "base/configobject.hpp"
|
2014-10-20 21:14:00 +02:00
|
|
|
#include "base/debug.hpp"
|
|
|
|
#include "base/objectlock.hpp"
|
|
|
|
#include "base/console.hpp"
|
|
|
|
#include <boost/algorithm/string/join.hpp>
|
|
|
|
#include <boost/algorithm/string/replace.hpp>
|
|
|
|
#include <fstream>
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
namespace po = boost::program_options;
|
|
|
|
|
|
|
|
REGISTER_CLICOMMAND("variable/list", VariableListCommand);
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
String VariableListCommand::GetDescription() const
|
2014-10-20 21:14:00 +02:00
|
|
|
{
|
|
|
|
return "Lists all Icinga 2 variables.";
|
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
String VariableListCommand::GetShortDescription() const
|
2014-10-20 21:14:00 +02:00
|
|
|
{
|
|
|
|
return "lists all variables";
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The entry point for the "variable list" CLI command.
|
|
|
|
*
|
|
|
|
* @returns An exit status.
|
|
|
|
*/
|
|
|
|
int VariableListCommand::Run(const boost::program_options::variables_map& vm, const std::vector<std::string>& ap) const
|
|
|
|
{
|
2018-08-09 15:37:23 +02:00
|
|
|
String varsfile = Configuration::VarsPath;
|
2014-10-20 21:14:00 +02:00
|
|
|
|
|
|
|
if (!Utility::PathExists(varsfile)) {
|
|
|
|
Log(LogCritical, "cli")
|
2017-12-19 15:50:05 +01:00
|
|
|
<< "Cannot open variables file '" << varsfile << "'.";
|
2014-10-20 21:14:00 +02:00
|
|
|
Log(LogCritical, "cli", "Run 'icinga2 daemon -C' to validate config and generate the cache file.");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-10-30 15:22:55 +01:00
|
|
|
VariableUtility::PrintVariables(std::cout);
|
2014-10-20 21:14:00 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|