From a2a6ee82d755e91b9bc3457e187478f99bba918f Mon Sep 17 00:00:00 2001 From: Konstantin Kelemen Date: Wed, 21 Sep 2016 17:38:14 +0300 Subject: [PATCH] Fix some spelling mistakes fixes #12822 Signed-off-by: Gunnar Beutner --- doc/3-monitoring-basics.md | 2 +- doc/6-distributed-monitoring.md | 4 ++-- lib/cli/nodewizardcommand.cpp | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/3-monitoring-basics.md b/doc/3-monitoring-basics.md index a6aa6bb86..f053fc938 100644 --- a/doc/3-monitoring-basics.md +++ b/doc/3-monitoring-basics.md @@ -730,7 +730,7 @@ argument parameters already (for example `iftraffic_units`), you could also add After `vars` is fully populated, all object attributes can be set calculated from provided host attributes. For strings, you can use string concatention with the `+` operator. -You can also specifiy the display_name, check command, interval, notes, notes_url, action_url, etc. +You can also specify the display_name, check command, interval, notes, notes_url, action_url, etc. attributes that way. Attribute strings can be [concatenated](17-language-reference.md#expression-operators), for example for adding a more detailed service `display_name`. diff --git a/doc/6-distributed-monitoring.md b/doc/6-distributed-monitoring.md index 991812da5..9a6ce074a 100644 --- a/doc/6-distributed-monitoring.md +++ b/doc/6-distributed-monitoring.md @@ -202,7 +202,7 @@ Here is an example of a master setup for the `icinga2-master1.localdomain` node Please specify if this is a satellite setup ('n' installs a master setup) [Y/n]: n Starting the Master setup routine... - Please specifiy the common name (CN) [icinga2-master1.localdomain]: icinga2-master1.localdomain + Please specify the common name (CN) [icinga2-master1.localdomain]: icinga2-master1.localdomain Checking for existing certificates for common name 'icinga2-master1.localdomain'... Certificates not yet generated. Running 'api setup' now. information/cli: Generating new CA. @@ -354,7 +354,7 @@ is configured to accept configuration and commands from the master: Please specify if this is a satellite setup ('n' installs a master setup) [Y/n]: Starting the Node setup routine... - Please specifiy the common name (CN) [icinga2-client1.localdomain]: icinga2-client1.localdomain + Please specify the common name (CN) [icinga2-client1.localdomain]: icinga2-client1.localdomain Please specify the master endpoint(s) this node should connect to: Master Common Name (CN from your master setup): icinga2-master1.localdomain Do you want to establish a connection to the master from this node? [Y/n]: diff --git a/lib/cli/nodewizardcommand.cpp b/lib/cli/nodewizardcommand.cpp index 31abf94d1..713545eb7 100644 --- a/lib/cli/nodewizardcommand.cpp +++ b/lib/cli/nodewizardcommand.cpp @@ -121,7 +121,7 @@ int NodeWizardCommand::Run(const boost::program_options::variables_map& vm, /* CN */ std::cout << ConsoleColorTag(Console_Bold) - << "Please specifiy the common name (CN)" + << "Please specify the common name (CN)" << ConsoleColorTag(Console_Normal) << " [" << Utility::GetFQDN() << "]: "; @@ -463,7 +463,7 @@ wizard_ticket: /* CN */ std::cout << ConsoleColorTag(Console_Bold) - << "Please specifiy the common name" << ConsoleColorTag(Console_Normal) + << "Please specify the common name" << ConsoleColorTag(Console_Normal) << " (CN) [" << Utility::GetFQDN() << "]: "; std::getline(std::cin, answer);