]> granicus.if.org Git - icinga2/commitdiff
Rename "dont-disable-confd"
authorJean Flach <jean-marcel.flach@icinga.com>
Wed, 2 May 2018 15:42:30 +0000 (17:42 +0200)
committerMichael Friedrich <michael.friedrich@icinga.com>
Tue, 8 May 2018 14:32:56 +0000 (16:32 +0200)
Double negation is confusing. Also this would change the default
behaviour and could lead to problems in automated environments.

refs #4508

lib/cli/nodesetupcommand.cpp

index 260d0134958d941f33a292fda9ad908151192940..fbc47dbd9a206e232de49574854725935fb4d73c 100644 (file)
@@ -67,7 +67,7 @@ void NodeSetupCommand::InitParameters(boost::program_options::options_descriptio
                ("accept-commands", "Accept commands from master")
                ("master", "Use setup for a master instance")
                ("global_zones", po::value<std::vector<std::string> >(), "The names of the additional global zones.")
-               ("dont-disable-confd", "Disables the conf.d directory during the setup");
+               ("disable-confd", "Disables the conf.d directory during the setup");
 
        hiddenDesc.add_options()
                ("master_zone", po::value<std::string>(), "DEPRECATED: The name of the master zone")
@@ -245,7 +245,7 @@ int NodeSetupCommand::SetupMaster(const boost::program_options::variables_map& v
        Log(LogInformation, "cli")
                << "Edit the api feature config file '" << apipath << "' and set a secure 'ticket_salt' attribute.";
 
-       if (!vm.count("dont-disable-confd")) {
+       if (vm.count("disable-confd")) {
                /* Disable conf.d inclusion */
                NodeUtility::UpdateConfiguration("\"conf.d\"", false, true);
 
@@ -570,7 +570,7 @@ int NodeSetupCommand::SetupNode(const boost::program_options::variables_map& vm,
                Log(LogInformation, "cli", "Make sure to restart Icinga 2.");
        }
 
-       if (!vm.count("dont-disable-confd")) {
+       if (vm.count("disable-confd")) {
 
                /* Disable conf.d inclusion */
                NodeUtility::UpdateConfiguration("\"conf.d\"", false, true);