From fce1de0ded7028686ecc345ea72f74dbde5e90d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Aleksandrovi=C4=8D=20Klimov?= Date: Thu, 21 Dec 2023 14:41:38 +0100 Subject: [PATCH] icinga2 feature *able: s/restart/reload/ --- lib/cli/featureutility.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/cli/featureutility.cpp b/lib/cli/featureutility.cpp index 3523868c5..829e1042a 100644 --- a/lib/cli/featureutility.cpp +++ b/lib/cli/featureutility.cpp @@ -77,7 +77,7 @@ int FeatureUtility::EnableFeatures(const std::vector& 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& 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()) {