icinga2 feature *able: s/restart/reload/

This commit is contained in:
Alexander Aleksandrovič Klimov 2023-12-21 14:41:38 +01:00 committed by GitHub
parent 461f908e52
commit fce1de0ded
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -77,7 +77,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";
@ -144,7 +144,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()) {