From 4fcbfbe8cad28006231409980fc08719cccca4e2 Mon Sep 17 00:00:00 2001 From: Michael Friedrich Date: Mon, 27 Apr 2015 11:10:49 +0200 Subject: [PATCH] Rewrite some of the wizard questions refs #8891 --- lib/cli/nodewizardcommand.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/cli/nodewizardcommand.cpp b/lib/cli/nodewizardcommand.cpp index ddc03553c..3d5e60035 100644 --- a/lib/cli/nodewizardcommand.cpp +++ b/lib/cli/nodewizardcommand.cpp @@ -160,7 +160,7 @@ wizard_endpoint_loop_start: endpoint_buffer = answer; endpoint_buffer.Trim(); - std::cout << "Do you want to establish a connection to the master " << ConsoleColorTag(Console_Bold) << "now " << ConsoleColorTag(Console_Normal) << " [Y/n]? "; + std::cout << "Do you want to establish a connection to the master " << ConsoleColorTag(Console_Bold) << "from this node?" << ConsoleColorTag(Console_Normal) << " [Y/n]: "; std::getline (std::cin, answer); boost::algorithm::to_lower(answer); @@ -168,7 +168,7 @@ wizard_endpoint_loop_start: if (choice.Contains("n")) { Log(LogWarning, "cli", "Node to master connection setup skipped"); - std::cout << "Connection setup skipped, you know hat you are doing.\n"; + std::cout << "Connection setup skipped. Please configure your master to connect to this node.\n"; } else { std::cout << ConsoleColorTag(Console_Bold) << "Please fill out the master connection information:" << ConsoleColorTag(Console_Normal) << "\n"; std::cout << ConsoleColorTag(Console_Bold) << "Master endpoint host" << ConsoleColorTag(Console_Normal) << " (Your master's IP address or FQDN): "; @@ -176,10 +176,10 @@ wizard_endpoint_loop_start: std::getline(std::cin, answer); boost::algorithm::to_lower(answer); - if (answer.empty()) { - Log(LogWarning, "cli", "Please enter the masters endpoint data"); - goto wizard_endpoint_loop_start; - } + if (answer.empty()) { + Log(LogWarning, "cli", "Please enter the master's endpoint connection information."); + goto wizard_endpoint_loop_start; + } String tmp = answer; tmp.Trim(); @@ -394,8 +394,8 @@ wizard_ticket: << " cert_path = SysconfDir + \"/icinga2/pki/\" + NodeName + \".crt\"\n" << " key_path = SysconfDir + \"/icinga2/pki/\" + NodeName + \".key\"\n" << " ca_path = SysconfDir + \"/icinga2/pki/ca.crt\"\n" - << " accept_config = " << accept_config << '\n' - << " accept_commands = " << accept_commands << '\n'; + << " accept_config = " << accept_config << "\n" + << " accept_commands = " << accept_commands << "\n"; if (!bind_host.IsEmpty()) fp << " bind_host = \"" << bind_host << "\"\n"; -- 2.40.0