icinga2/lib/cli/pkinewcacommand.cpp

30 lines
662 B
C++
Raw Permalink Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#include "cli/pkinewcacommand.hpp"
2017-09-05 08:44:56 -04:00
#include "remote/pkiutility.hpp"
2014-10-19 08:21:12 -04:00
#include "base/logger.hpp"
using namespace icinga;
REGISTER_CLICOMMAND("pki/new-ca", PKINewCACommand);
String PKINewCACommand::GetDescription() const
{
return "Sets up a new Certificate Authority.";
}
String PKINewCACommand::GetShortDescription() const
{
return "sets up a new CA";
}
/**
* The entry point for the "pki new-ca" CLI command.
*
* @returns An exit status.
*/
int PKINewCACommand::Run(const boost::program_options::variables_map&, [[maybe_unused]] const std::vector<std::string>& ap) const
{
return PkiUtility::NewCa();
}