Parcourir la source

spelling: configuration

Josh Soref il y a 7 ans
Parent
commit
6cb1132a09

+ 1 - 1
compatcheck/README

@@ -1,5 +1,5 @@
 This directory is a collection of compatibility checker programs.
 This directory is a collection of compatibility checker programs.
 They will be run before any other installation attempts on 'make install'
 They will be run before any other installation attempts on 'make install'
 to see if the installation causes any substantial compatibility problems
 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.
 '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 config Pointer to a configuration specified for the agent.
     /// @param check_only Boolean flag indicating if this method should
     /// @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.
     /// @return Pointer to a result of configuration parsing.
     virtual isc::data::ConstElementPtr
     virtual isc::data::ConstElementPtr
     parse(isc::data::ConstElementPtr config, bool check_only);
     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.
 // Tests that the sockets settings are updated upon successful reconfiguration.
 TEST_F(CtrlAgentControllerTest, successfulConfigUpdate) {
 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 =
     const char* second_config =
         "{"
         "{"
         "  \"http-host\": \"127.0.0.1\","
         "  \"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 configuration remains the same. The server should continue using the
 // listener instance it has been using prior to the reconfiguration.
 // listener instance it has been using prior to the reconfiguration.
 TEST_F(CtrlAgentControllerTest, noListenerChange) {
 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 =
     const char* second_config =
         "{"
         "{"
         "  \"http-host\": \"127.0.0.1\","
         "  \"http-host\": \"127.0.0.1\","

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

@@ -734,7 +734,7 @@
   "reverse-ddns" : {}
   "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/
 // RESTful interface to be available at http://127.0.0.1:8080/
 "Control-agent": {
 "Control-agent": {
     "http-host": "127.0.0.1",
     "http-host": "127.0.0.1",

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

@@ -48,7 +48,7 @@ public:
 
 
     /// @brief Constructor.
     /// @brief Constructor.
     ///
     ///
-    /// The default confguration:
+    /// The default configuration:
     /// - no identifiers selected for host reservations searches.
     /// - no identifiers selected for host reservations searches.
     CfgHostOperations();
     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 config_file name of the file to write the configuration to
     /// @param cfg configuration to write (optional)
     /// @param cfg configuration to write (optional)
     /// @return number of files written
     /// @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
     ///                   be written
     virtual size_t
     virtual size_t
     writeConfigFile(const std::string& config_file,
     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
 // This test verifies that the option data configuration with a minimal
 // set of parameters works as expected when option definition is
 // set of parameters works as expected when option definition is
-// created in the configruation file.
+// created in the configuration file.
 TEST_F(ParseConfigTest, optionDataMinimalWithOptionDef) {
 TEST_F(ParseConfigTest, optionDataMinimalWithOptionDef) {
     // Configuration string.
     // Configuration string.
     std::string config =
     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
 // 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) {
 TEST_F(MySQLHostMgrTest, getAll) {
     testGetAll(*getCfgHosts(), HostMgr::instance());
     testGetAll(*getCfgHosts(), HostMgr::instance());
 }
 }
@@ -521,7 +521,7 @@ PostgreSQLHostMgrTest::TearDown() {
 }
 }
 
 
 // This test verifies that reservations for a particular client can
 // 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) {
 TEST_F(PostgreSQLHostMgrTest, getAll) {
     testGetAll(*getCfgHosts(), HostMgr::instance());
     testGetAll(*getCfgHosts(), HostMgr::instance());
 }
 }