icinga2 pki save-cert: allow to specify --key and --cert

refs #7992
This commit is contained in:
Alexander A. Klimov 2020-04-28 17:34:00 +02:00
parent d5d89b7f39
commit 3617f05836
1 changed files with 4 additions and 0 deletions

View File

@ -29,6 +29,10 @@ void PKISaveCertCommand::InitParameters(boost::program_options::options_descript
("trustedcert", po::value<std::string>(), "Trusted certificate file path (output)")
("host", po::value<std::string>(), "Parent Icinga instance to fetch the public TLS certificate from")
("port", po::value<std::string>()->default_value("5665"), "Icinga 2 port");
hiddenDesc.add_options()
("key", po::value<std::string>())
("cert", po::value<std::string>());
}
std::vector<String> PKISaveCertCommand::GetArgumentSuggestions(const String& argument, const String& word) const