Browse Source

spelling: configuration

Josh Soref 7 years ago
parent
commit
6cb1132a09

+ 1 - 1
compatcheck/README

@@ -1,5 +1,5 @@
 This directory is a collection of compatibility checker programs.
 They will be run before any other installation attempts on 'make install'
 to see if the installation causes any substantial compatibility problems
-with existing configuratons.  If any checker program finds an issue,
+with existing configurations.  If any checker program finds an issue,
 'make install' will stop at that point.

+ 1 - 1
src/bin/agent/ca_cfg_mgr.h

@@ -186,7 +186,7 @@ protected:
     ///
     /// @param config Pointer to a configuration specified for the agent.
     /// @param check_only Boolean flag indicating if this method should
-    /// only verify correctness of the provided conifiguration.
+    /// only verify correctness of the provided configuration.
     /// @return Pointer to a result of configuration parsing.
     virtual isc::data::ConstElementPtr
     parse(isc::data::ConstElementPtr config, bool check_only);

+ 2 - 2
src/bin/agent/tests/ca_controller_unittests.cc

@@ -270,7 +270,7 @@ TEST_F(CtrlAgentControllerTest, sigtermShutdown) {
 
 // Tests that the sockets settings are updated upon successful reconfiguration.
 TEST_F(CtrlAgentControllerTest, successfulConfigUpdate) {
-    // This configuration should be used to override the initial conifguration.
+    // This configuration should be used to override the initial configuration.
     const char* second_config =
         "{"
         "  \"http-host\": \"127.0.0.1\","
@@ -378,7 +378,7 @@ TEST_F(CtrlAgentControllerTest, unsuccessfulConfigUpdate) {
 // listener configuration remains the same. The server should continue using the
 // listener instance it has been using prior to the reconfiguration.
 TEST_F(CtrlAgentControllerTest, noListenerChange) {
-    // This configuration should be used to override the initial conifguration.
+    // This configuration should be used to override the initial configuration.
     const char* second_config =
         "{"
         "  \"http-host\": \"127.0.0.1\","

+ 1 - 1
src/bin/keactrl/kea.conf.pre

@@ -734,7 +734,7 @@
   "reverse-ddns" : {}
 },
 
-// This is a basic configuraton for the Kea Control Agent.
+// This is a basic configuration for the Kea Control Agent.
 // RESTful interface to be available at http://127.0.0.1:8080/
 "Control-agent": {
     "http-host": "127.0.0.1",

+ 1 - 1
src/lib/dhcpsrv/cfg_host_operations.h

@@ -48,7 +48,7 @@ public:
 
     /// @brief Constructor.
     ///
-    /// The default confguration:
+    /// The default configuration:
     /// - no identifiers selected for host reservations searches.
     CfgHostOperations();
 

+ 1 - 1
src/lib/dhcpsrv/daemon.h

@@ -149,7 +149,7 @@ public:
     /// @param config_file name of the file to write the configuration to
     /// @param cfg configuration to write (optional)
     /// @return number of files written
-    /// @throw Unexpected if CfgMgr can't retrieve configuation or file cannot
+    /// @throw Unexpected if CfgMgr can't retrieve configuration or file cannot
     ///                   be written
     virtual size_t
     writeConfigFile(const std::string& config_file,

+ 1 - 1
src/lib/dhcpsrv/tests/dhcp_parsers_unittest.cc

@@ -1242,7 +1242,7 @@ TEST_F(ParseConfigTest, optionDataMinimal) {
 
 // This test verifies that the option data configuration with a minimal
 // set of parameters works as expected when option definition is
-// created in the configruation file.
+// created in the configuration file.
 TEST_F(ParseConfigTest, optionDataMinimalWithOptionDef) {
     // Configuration string.
     std::string config =

+ 2 - 2
src/lib/dhcpsrv/tests/host_mgr_unittest.cc

@@ -444,7 +444,7 @@ MySQLHostMgrTest::TearDown() {
 }
 
 // This test verifies that reservations for a particular client can
-// be retrieved from the confguration file and a database simultaneously.
+// be retrieved from the configuration file and a database simultaneously.
 TEST_F(MySQLHostMgrTest, getAll) {
     testGetAll(*getCfgHosts(), HostMgr::instance());
 }
@@ -521,7 +521,7 @@ PostgreSQLHostMgrTest::TearDown() {
 }
 
 // This test verifies that reservations for a particular client can
-// be retrieved from the confguration file and a database simultaneously.
+// be retrieved from the configuration file and a database simultaneously.
 TEST_F(PostgreSQLHostMgrTest, getAll) {
     testGetAll(*getCfgHosts(), HostMgr::instance());
 }