mirror of https://github.com/Icinga/icinga2.git
Fixed missing closing bracket in CLI command pki new-cert.
This commit is contained in:
parent
bfec7dd194
commit
53908b7080
|
@ -41,7 +41,7 @@ void PKINewCertCommand::InitParameters(boost::program_options::options_descripti
|
||||||
{
|
{
|
||||||
visibleDesc.add_options()
|
visibleDesc.add_options()
|
||||||
("cn", po::value<std::string>(), "Common Name")
|
("cn", po::value<std::string>(), "Common Name")
|
||||||
("key", po::value<std::string>(), "Key file path (output")
|
("key", po::value<std::string>(), "Key file path (output)")
|
||||||
("csr", po::value<std::string>(), "CSR file path (optional, output)")
|
("csr", po::value<std::string>(), "CSR file path (optional, output)")
|
||||||
("cert", po::value<std::string>(), "Certificate file path (optional, output)");
|
("cert", po::value<std::string>(), "Certificate file path (optional, output)");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue