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