Fix wrong help string in node setup CLI command

fixes #13419
This commit is contained in:
Michael Friedrich 2016-12-06 11:22:24 +01:00
parent be935d0239
commit c036bfaa94
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ void NodeSetupCommand::InitParameters(boost::program_options::options_descriptio
{
visibleDesc.add_options()
("zone", po::value<std::string>(), "The name of the local zone")
("master_host", po::value<std::string>(), "The name of the master host for auto-signing the csr")
("master_host", po::value<std::string>(), "The name of the master host for auto-signing the csr; syntax: host[,port]")
("endpoint", po::value<std::vector<std::string> >(), "Connect to remote endpoint; syntax: cn[,host,port]")
("listen", po::value<std::string>(), "Listen on host,port")
("ticket", po::value<std::string>(), "Generated ticket number for this request")