mirror of
https://github.com/Icinga/icinga2.git
synced 2026-04-26 00:27:11 -04:00
Merge fce1de0ded into 492ee8d632
This commit is contained in:
commit
bd9e4e2a8d
3 changed files with 4 additions and 4 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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()) {
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue