This commit is contained in:
Alexander Aleksandrovič Klimov 2026-04-02 14:59:50 +00:00 committed by GitHub
commit bd9e4e2a8d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View file

@ -50,7 +50,7 @@ bool ApiSetupUtility::SetupMaster(const String& cn, bool prompt_restart)
if (prompt_restart) {
std::cout << "Done.\n\n";
std::cout << "Now restart your Icinga 2 daemon to finish the installation!\n\n";
std::cout << "Now reload your Icinga 2 daemon to finish the installation!\n\n";
}
return true;

View file

@ -78,7 +78,7 @@ int FeatureUtility::EnableFeatures(const std::vector<std::string>& features)
}
std::cout << "Enabling feature " << ConsoleColorTag(Console_ForegroundMagenta | Console_Bold) << feature
<< ConsoleColorTag(Console_Normal) << ". Make sure to restart Icinga 2 for these changes to take effect.\n";
<< ConsoleColorTag(Console_Normal) << ". Make sure to reload Icinga 2 for these changes to take effect.\n";
#ifndef _WIN32
String relativeSource = "../features-available/" + feature + ".conf";
@ -145,7 +145,7 @@ int FeatureUtility::DisableFeatures(const std::vector<std::string>& features)
}
std::cout << "Disabling feature " << ConsoleColorTag(Console_ForegroundMagenta | Console_Bold) << feature
<< ConsoleColorTag(Console_Normal) << ". Make sure to restart Icinga 2 for these changes to take effect.\n";
<< ConsoleColorTag(Console_Normal) << ". Make sure to reload Icinga 2 for these changes to take effect.\n";
}
if (!errors.empty()) {

View file

@ -123,7 +123,7 @@ int NodeWizardCommand::Run(const boost::program_options::variables_map& vm,
<< ConsoleColorTag(Console_Normal);
std::cout << ConsoleColorTag(Console_Bold | Console_ForegroundRed)
<< "Now restart your Icinga 2 daemon to finish the installation!\n"
<< "Now reload your Icinga 2 daemon to finish the installation!\n"
<< ConsoleColorTag(Console_Normal);
return 0;